body {
    background-color: #F8F8F8;
    text-align: center;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #1D2937;
}

.hero-banner {
    width: 100%;
    display: block;
}

.hero-content {
    padding: 40px 20px;
}

.hero-photo {
    width: 220px;
    height: 220px;
    object-fit: cover;

    border-radius: 50%;

    border: 6px solid white;

    margin-top: -110px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.hero h1 {
    font-size: 3rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2rem;
    color: #1D2937;
    max-width: 700px;
    margin: 0 auto;
}

.social-links {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 22px;
    align-items: center;
}

.social-links a {
    color: #1D2937;
    font-size: 2rem;
    text-decoration: none;
    transition: transform 0.2s ease, color 0.2s ease;
}

.social-links a:hover {
    color: #b08d57;
    transform: translateY(-3px);
}

/* Welcome Section */

.welcome-section {
    max-width: 720px;
    margin: 90px auto 60px;
    padding: 0 20px;
    text-align: center;
}

.welcome-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1D2937;
}

.welcome-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* =========================================================
   HOMEPAGE FEATURE CARDS
========================================================= */

.features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;

    max-width: 1100px;
    margin: 80px auto;
    padding: 0 20px;

    align-items: stretch;
}

.feature-card {
    display: flex;
    flex-direction: column;

    min-height: 390px;
    height: 100%;
    padding: 35px 25px;

    box-sizing: border-box;

    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);

    text-align: center;
    text-decoration: none;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);

    cursor: pointer;
}

.feature-card i {
    color: #c7a46c;
}

.feature-icon {
    margin-bottom: 24px;

    font-size: 2.6rem;
    color: #c7a46c;
}

.feature-card h3 {
    margin: 0 0 15px;

    font-size: 1.4rem;
    line-height: 1.2;

    color: #1d2937;
}

.feature-card > p {
    margin: 0 0 2rem;

    line-height: 1.6;

    color: #1d2937;
}

.feature-card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;

    width: 100%;
    min-height: 52px;
    margin-top: auto;
    margin-bottom: 0.25rem;
    padding: 0.8rem 1.2rem;

    box-sizing: border-box;

    font-size: 0.9rem;
    font-weight: 700;

    color: #001a39;
    background: #f2f2f2;

    border-radius: 999px;

    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        transform 0.2s ease;
}

.feature-card:hover .feature-card-link,
.feature-card:focus-visible .feature-card-link {
    color: #001a39;
    background: rgba(199, 164, 108, 0.35);
}

.feature-card-link span {
    display: inline;
    padding: 0;

    font-size: 1rem;
    font-weight: 700;

    color: inherit;
    background: transparent;
    border-radius: 0;

    transition: transform 0.2s ease;
}

.feature-card:hover .feature-card-link span {
    transform: translateX(3px);
}


/* =========================================================
   FEATURE CARD TABLET
========================================================= */

@media (max-width: 900px) {

    .features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .feature-card {
        min-height: 370px;
    }
}


/* =========================================================
   FEATURE CARD MOBILE
========================================================= */

@media (max-width: 600px) {

    .features {
        grid-template-columns: 1fr;
        gap: 22px;

        margin: 55px auto;
        padding: 0 16px;
    }

    .feature-card {
        min-height: 340px;
        padding: 30px 22px;
    }

    .feature-card-link {
        min-height: 50px;
    }
}

/* ---------- Footer ---------- */

.site-footer {
    margin-top: 140px;
    padding: 60px 20px;
    background: #001A39;
    color: white;
    text-align: center;
}

.site-footer h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: white;
}

.site-footer p {
    max-width: 700px;
    margin: 0 auto 25px;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
}

.footer-divider {
    width: 80px;
    height: 2px;
    background: #C7A46C;
    margin: 30px auto;
    border-radius: 2px;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 35px 0;
    font-size: 2rem;
}

.footer-socials a {
    color: #C7A46C;
    transition: 0.3s;
    text-decoration: none;
}

.footer-socials a:hover {
    color: white;
    transform: translateY(-4px);
}

.copyright {
    margin-top: 30px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.gold-heart {
    color: #C7A46C;
}

/* Navigation */

.main-nav {
    text-align: center;
    margin: 25px 0 40px;
}

.main-nav a {
    text-decoration: none;
    color: #001A39;
    font-weight: 500;
    margin: 0 15px;
    transition: color 0.3s ease;
    font-size: 1.05rem;
}

.main-nav a:hover {
    color: #C7A46C;
}

.main-nav i {
    margin-right: 8px;
}

.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Review article pages */

.review-article {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.back-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: #001A39;
    font-weight: 600;
    text-decoration: none;
}

.review-hero {
    text-align: center;
    margin-bottom: 2rem;
}

.eyebrow {
    color: #C7A46C;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.review-hero h1 {
    color: #001A39;
    font-size: 2.5rem;
    margin: 0.5rem 0;
}

.review-subtitle {
    font-size: 1.1rem;
    color: #555;
}

.enzo-rating {
    margin-top: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: #001A39;
}

.enzo-rating span {
    display: block;
    font-size: 1rem;
    margin-top: 0.25rem;
}

.review-image-placeholder {
    background: #F7F2EA;
    border: 2px dashed #C7A46C;
    border-radius: 18px;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #001A39;
    font-weight: 600;
    margin: 2rem 0;
}

.verdict-box,
.affiliate-box {
    background: #F7F2EA;
    border-left: 6px solid #C7A46C;
    border-radius: 14px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.review-content h2,
.verdict-box h2,
.affiliate-box h2 {
    color: #001A39;
}

.review-content {
    line-height: 1.7;
}

.review-content ul {
    padding-left: 1.5rem;
}

.review-content li {
    margin-bottom: 0.5rem;
}

.affiliate-box .button {
    display: inline-block;
    margin-top: 1rem;
}

/* Site header for inner pages */

.site-header {
    background: #001A39;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 3px 12px rgba(0,0,0,0.12);
}

.logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.site-logo {
    max-height: 120px;
    width: auto;
    display: block;
}

.main-nav {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.main-nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
}

.main-nav a:hover {
    color: #C7A46C;
}

@media (max-width: 768px) {
    .site-header {
        flex-direction: column;
        text-align: center;
    }

    .main-nav {
        justify-content: center;
    }
}

/* Product reviews landing page */

.reviews-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.reviews-intro {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 2rem;
}

.reviews-intro h1 {
    color: #001A39;
    font-size: 2.75rem;
    margin: 0.5rem 0;
}

.reviews-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.review-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 2rem 0 3rem;
}

.filter-pill {
    border: 2px solid #C7A46C;
    background: #ffffff;
    color: #001A39;
    border-radius: 999px;
    padding: 0.65rem 1.1rem;
    font-weight: 700;
    cursor: pointer;
}

.filter-pill.active,
.filter-pill:hover {
    background: #C7A46C;
    color: #001A39;
}


.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 320px));
    gap: 2rem;
    justify-content: center;
}

.review-card {
    display: block;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    max-width: 320px;
    box-shadow: 0 8px 24px rgba(29, 53, 87, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(29, 53, 87, 0.18);
}


.review-card img {
    display: block;
    width: 200px;
    height: 200px;
    object-fit: cover;
    object-position: center;
    margin: 2rem auto 1rem;
    border-radius: 12px;
}

.review-card-content {
    padding: 1.5rem;
    text-align: center;
}

.review-category {
    color: #C7A46C;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
}

.review-card h2 {
    color: #001A39;
    margin: 0.4rem 0 0.75rem;
}

.review-card-rating {
    color: #C7A46C;
    font-weight: 800;
    margin-bottom: 1rem;
}

.review-card-rating span {
    display: block;
    color: #001A39;
    margin-top: 0.25rem;
}

.read-review {
    display: inline-block;
    margin-top: 1rem;
    color: #001A39;
    font-weight: 800;
}

body {
  margin: 0;
  background: #fbf7ef;
  color: #121212;
  font-family: Arial, sans-serif;
}

.site-header {
  height: 92px;
  background: #001A39;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 46px;
}

.site-logo {
  width: 190px;
}

.main-nav {
  display: flex;
  gap: 42px;
}

.main-nav a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 14px;
}

.main-nav i {
  color: #d49a28;
  margin-right: 6px;
}

.review-article {
  max-width: 1040px;
  margin: 0 auto;
  padding: 36px 24px 26px;
}

.back-link {
  color: #001A39;
  text-decoration: none;
  font-weight: 800;
}

.review-hero {
  text-align: center;
}

.eyebrow {
  color: #d49a28;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 8px;
}

.review-hero h1,
.verdict-box h2,
.review-grid h2,
.affiliate-box h2 {
  font-family: Georgia, serif;
  color: #001A39;
}

.review-hero h1 {
  font-size: 48px;
  margin: 0;
}

.review-subtitle {
  font-size: 21px;
  font-style: italic;
  margin: 14px 0 20px;
}

.enzo-rating {
  color: #001A39;
  font-family: Georgia, serif;
  font-size: 24px;
  margin-bottom: 24px;
}

.paws {
  color: #c99124;
  font-size: 32px;
}

.review-photo {
  width: 100%;
  display: block;
  border-radius: 10px;
  border: 1px solid #23394f;
  margin: 0 auto 34px;
}

.verdict-box,
.affiliate-box {
  border: 1px solid #dec89e;
  border-left: 8px solid #d49a28;
  border-radius: 10px;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 28px;
  background: #fffaf1;
}

.verdict-box h2,
.affiliate-box h2 {
  font-size: 30px;
  margin: 0 0 8px;
}

.verdict-box p,
.affiliate-box p {
  font-size: 18px;
  line-height: 1.55;
  margin: 0;
}

.circle-icon {
  width: 72px;
  height: 72px;
  min-width: 72px;
  border-radius: 50%;
  border: 3px solid #d49a28;
  display: grid;
  place-items: center;
  font-size: 34px;
  color: #001A39;
  background: #fff8e8;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin: 38px 0;
}

.review-grid > div {
  padding-right: 28px;
  border-right: 1px solid #d8d0c5;
}

.review-grid > div:last-child {
  border-right: none;
}

.review-grid h2 {
  font-size: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: white;
  display: inline-grid;
  place-items: center;
  font-family: Arial, sans-serif;
}

.green { background: #2f9a57; }
.gold { background: #d49a28; }
.navy { background: #001A39; }

.review-grid li,
.review-grid p {
  font-size: 17px;
  line-height: 1.7;
}

.check-list,
.dot-list {
  list-style: none;
  padding-left: 0;
}

.check-list li::before {
  content: "✓";
  color: #2f9a57;
  font-weight: 900;
  margin-right: 10px;
}

.dot-list li::before {
  content: "•";
  color: #d49a28;
  font-weight: 900;
  margin-right: 12px;
}

.affiliate-box {
  border-left-width: 1px;
  justify-content: space-between;
}

.gold-bg {
  background: #d49a28;
  color: white;
  border: none;
}

.amazon-button {
  background: #001A39;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 900;
  padding: 22px 34px;
  border-radius: 9px;
  white-space: nowrap;
}

.amazon-button i {
  font-size: 28px;
  margin-right: 14px;
}

@media (max-width: 800px) {
  .site-header {
    flex-direction: column;
    height: auto;
    padding: 24px;
    gap: 20px;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }

  .review-hero h1 {
    font-size: 36px;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .review-grid > div {
    border-right: none;
    border-bottom: 1px solid #d8d0c5;
    padding-bottom: 24px;
  }

  .affiliate-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

.affiliate-disclosure {
    margin: 2.5rem 0 1.25rem;
    padding: 16px 22px;
    background: #F8F3E8;
    border-left: 4px solid #D49A28;
    border-radius: 8px;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: left;
}

.affiliate-disclosure i {
    color: #D49A28;
    margin-right: 8px;
}

.affiliate-disclosure strong {
    color: #001A39;
}

.affiliate-disclosure{
    margin-bottom: 1.25rem;
}

.footer-logo {
    width: 180px;
    margin-bottom: 20px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 25px 0;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.footer-nav a:hover {
    color: #D49A28;
}

.review-content a {
    color: #001A39;
    font-weight: 600;
    text-decoration: none;
}

.review-content a:hover {
    color: #D49A28;
    text-decoration: underline;
}

/* Homepage navigation */

.home-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 55px;
    flex-wrap: wrap;
    margin: 25px 0 40px;
    padding: 18px 25px;
}

.home-nav a,
.home-nav a:visited {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    color: #001A39;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    opacity: 1;
}

.home-nav a:hover {
    color: #C7A46C;
}

.home-nav i {
    margin-right: 0;
    color: #C7A46C;
}

/* Footer links */

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.footer-links a,
.footer-links a:visited {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
}

.footer-links a:hover {
    color: #C7A46C;
    text-decoration: underline;
}

/* Mobile header consistency */

@media (max-width: 800px) {

    .site-header {
        height: auto;
        padding: 18px 16px;
        flex-direction: column;
        justify-content: center;
        gap: 16px;
    }

    .site-logo {
        width: 150px;
        max-height: none;
    }

    .main-nav {
        width: 100%;
        max-width: 460px;
        margin: 0;
        display: grid;
        grid-template-columns: repeat(2, max-content);
        justify-content: center;
        gap: 12px 28px;
    }

    .main-nav a {
        margin: 0;
        font-size: 0.78rem;
        line-height: 1.2;
        white-space: nowrap;
    }

    .main-nav i {
        margin-right: 6px;
    }
}

@media (max-width: 420px) {

    .main-nav {
        gap: 10px 18px;
    }

    .main-nav a {
        font-size: 0.7rem;
    }

    .site-logo {
        width: 135px;
    }
}/* Mobile product review grid */

@media (max-width: 800px) {

    .reviews-page {
        padding-left: 16px;
        padding-right: 16px;
    }

    .review-grid {
        grid-template-columns: 1fr;
        justify-items: center;
        width: 100%;
    }

    .review-card {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
}

/* =========================================================
   LATEST VIDEOS PAGE
========================================================= */

.videos-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.videos-intro {
    max-width: 760px;
    margin: 0 auto 3rem;
    text-align: center;
}

.videos-intro h1 {
    color: #001A39;
    font-size: 2.75rem;
    margin: 0.5rem 0 1rem;
}

.videos-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
}


/* =========================================================
   FEATURED VIDEO SECTION
========================================================= */

.featured-video-section {
    margin: 3rem 0 5rem;
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(29, 53, 87, 0.12);
    text-align: left;
}

.featured-investigation-heading {
    margin-bottom: 1.75rem;
}

.featured-investigation-heading h2 {
    margin: 0.5rem 0 0;
    color: #001A39;
    font-family: Georgia, serif;
    font-size: 2rem;
}


/* =========================================================
   FEATURED EVIDENCE ROW
========================================================= */

.featured-evidence-row {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.4fr);
    gap: 2.5rem;
    align-items: start;
}

.case-file-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.featured-evidence-row .case-file {
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

.case-youtube-button {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
    margin: 0.25rem;

    box-sizing: border-box;
}

.featured-video-player {
    position: static;
    width: 100%;
    align-self: start;
}

/* =========================================================
   FEATURED INVESTIGATION REPORT
========================================================= */

.featured-investigation-report {
    width: 100%;
    margin-top: 1.5rem;
    display: block;
}

.featured-investigation-report .ceo-notes {
    margin: 0 0 1.5rem;
}

.featured-investigation-report .management-verdict {
    width: 100%;
    box-sizing: border-box;
    margin: 0;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
    background: #001A39;
    border-radius: 14px;
}

.video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.youtube-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    background: #001A39;
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
    border-radius: 8px;
    transition: transform 0.2s ease,
                background-color 0.2s ease;
}

.youtube-button:hover {
    background: #C7A46C;
    color: #001A39;
    transform: translateY(-2px);
}

.youtube-button i {
    font-size: 1.4rem;
}

.uploads-section {
    margin: 5rem 0;
}

.section-heading {
    max-width: 700px;
    margin: 0 auto 2rem;
    text-align: center;
}

.section-heading h2 {
    color: #001A39;
    font-family: Georgia, serif;
    font-size: 2.2rem;
    margin: 0.5rem 0 1rem;
}

.section-heading p {
    line-height: 1.7;
}

.uploads-player {
    max-width: 900px;
    margin: 0 auto;
}

.youtube-callout {
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 5rem 0 1rem;
    padding: 2rem;
    background: #FFF8E8;
    border: 1px solid #DEC89E;
    border-left: 8px solid #D49A28;
    border-radius: 12px;
    text-align: left;
}

.youtube-callout h2 {
    color: #001A39;
    font-family: Georgia, serif;
    margin: 0 0 0.5rem;
}

.youtube-callout p {
    line-height: 1.6;
    margin: 0;
}

.youtube-callout .youtube-button {
    margin-left: auto;
    white-space: nowrap;
}


/* =====================================================
   FEATURED VIDEO PLAYER
===================================================== */

.featured-video-player {
    position: sticky;
    top: 110px;
    align-self: start;
}

.featured-video-player .video-wrapper {
    margin-bottom: 1rem;
}

/* =====================================================
   CASE FILE
===================================================== */

.case-file {
    position: relative;
    margin: 1.75rem 0 2rem;
    padding: 1.5rem;
    background: #F8F3E8;
    border: 1px solid #E3D2B3;
    border-left: 6px solid #C7A46C;
    border-radius: 12px;
    text-align: left;
}

.case-file-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.4rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #DCC9A8;
}

.case-number {
    margin: 0;
    color: #001A39;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.case-stamp {
    display: inline-block;
    padding: 0.4rem 0.65rem;
    border: 2px solid #B06D3B;
    border-radius: 5px;
    color: #B06D3B;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    transform: rotate(-2deg);
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 2rem;
}

.case-detail {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.case-label {
    color: #C28A1D;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.case-value {
    color: #001A39;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.35;
}

/* =====================================================
   CEO NOTES AND MANAGEMENT VERDICT
===================================================== */

.ceo-notes {
    margin: 2rem 0;
    text-align: left;
}

.ceo-notes-title {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin: 0 0 1rem;
    color: #C28A1D;
    font-family: Georgia, serif;
    font-size: 1.35rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ceo-notes-title i {
    font-size: 1.1rem;
}

.ceo-notes p {
    margin-bottom: 1rem;
    line-height: 1.75;
}

.management-verdict {
    margin: 2rem 0;
    padding: 1.25rem 1.4rem;
    background: #FFF8E8;
    border-left: 5px solid #C7A46C;
    border-radius: 8px;
    text-align: left;
}

.management-verdict h3 {
    margin: 0 0 0.65rem;
    color: #001A39;
    font-family: Georgia, serif;
    font-size: 1.15rem;
}

.management-verdict p {
    margin: 0;
    line-height: 1.65;
}

/* =========================================================
   LATEST VIDEOS — MOBILE
========================================================= */

@media (max-width: 800px) {

    /* -----------------------------------------------------
       PAGE LAYOUT
    ----------------------------------------------------- */

    .videos-page {
        width: 100%;
        max-width: 100%;
        padding: 1.5rem 12px 3rem;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .videos-intro {
        width: 100%;
    }

    .videos-intro h1 {
        margin: 0.5rem 0 1.5rem;
        font-size: clamp(2.25rem, 10vw, 3.5rem);
        line-height: 1;
        overflow-wrap: break-word;
    }


    /* -----------------------------------------------------
       FEATURED INVESTIGATION LAYOUT
    ----------------------------------------------------- */

    .featured-evidence-row {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 1.5rem;
        width: 100%;
        align-items: start;
    }

    .case-file-column {
        width: 100%;
        min-width: 0;
        gap: 1rem;
    }

    .featured-evidence-row .case-file {
        width: 100%;
        min-width: 0;
        margin: 0;
    }

    .featured-video-player {
        position: static;
        top: auto;
        width: 100%;
        min-width: 0;
        align-self: auto;
    }

    .featured-video-player .video-wrapper {
        width: 100%;
        margin-bottom: 1rem;
    }


    /* -----------------------------------------------------
       CASE FILE
    ----------------------------------------------------- */

    .case-file {
        width: 100%;
        margin: 1.25rem 0 1.5rem;
        padding: 1.25rem;
        box-sizing: border-box;
    }

    .case-file-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }

    .case-number {
        font-size: 1rem;
        line-height: 1.3;
    }

    .case-stamp {
        max-width: 100%;
        padding: 0.45rem 0.65rem;
        font-size: 0.68rem;
        line-height: 1.25;
        white-space: normal;
        transform: none;
    }

    .case-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 1.1rem;
    }

    .case-detail {
        min-width: 0;
    }

    .case-label {
        font-size: 0.72rem;
    }

    .case-value {
        font-size: 1rem;
        overflow-wrap: break-word;
    }


    /* -----------------------------------------------------
       YOUTUBE BUTTON
    ----------------------------------------------------- */

    .case-youtube-button {
        width: 100%;
        margin: 0;
        box-sizing: border-box;
    }

    .case-youtube-button .youtube-button,
    .youtube-button {
        width: 100%;
        min-height: 58px;
        padding: 14px 18px;
        box-sizing: border-box;
        text-align: center;
        white-space: normal;
    }


    /* -----------------------------------------------------
       FEATURED INVESTIGATION REPORT
    ----------------------------------------------------- */

    .featured-investigation-report {
        width: 100%;
        margin-top: 2rem;
    }

    .featured-investigation-report .ceo-notes {
        margin: 0 0 1.5rem;
    }

    .featured-investigation-report .management-verdict {
        width: 100%;
        margin: 0;
    }


    /* -----------------------------------------------------
       CEO NOTES AND MANAGEMENT VERDICT
    ----------------------------------------------------- */

    .ceo-notes {
        margin: 2rem 0;
        text-align: left;
    }

    .ceo-notes-title {
        justify-content: center;
        gap: 0.5rem;
        font-size: clamp(1.35rem, 6vw, 1.8rem);
        line-height: 1.2;
        text-align: center;
    }

    .ceo-notes p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .management-verdict {
        width: 100%;
        margin: 1.5rem 0;
        padding: 1.15rem;
        box-sizing: border-box;
        text-align: left;
    }


    /* -----------------------------------------------------
       VIDEO UPLOADS SECTION
    ----------------------------------------------------- */

    .uploads-section {
        margin: 3rem 0;
    }

    .section-heading {
        margin-bottom: 1.5rem;
    }

    .section-heading h2 {
        font-size: clamp(1.75rem, 8vw, 2.2rem);
    }

    .uploads-player {
        width: 100%;
    }


    /* -----------------------------------------------------
       YOUTUBE CALLOUT
    ----------------------------------------------------- */

    .youtube-callout {
        flex-direction: column;
        align-items: stretch;
        gap: 1.25rem;
        margin: 3rem 0 1rem;
        padding: 1.5rem;
        text-align: center;
    }

    .youtube-callout .youtube-button {
        width: 100%;
        margin-left: 0;
        white-space: normal;
    }
}

/* =========================================================
   INCIDENT REPORT ARTICLE
========================================================= */

.incident-article {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.incident-hero {
    text-align: center;
    margin-bottom: 2rem;
}

.incident-hero h1 {
    color: #001A39;
    font-family: Georgia, serif;
    font-size: 2.6rem;
    margin: 0.5rem 0 1rem;
}

.incident-article .verdict-box {
    margin: 2rem 0;
}

.incident-article .case-file {
    margin: 2rem 0;
}

.incident-article .review-content {
    text-align: left;
}

.incident-article .review-content h2 {
    margin-top: 2.25rem;
    margin-bottom: 1rem;
    color: #001A39;
    font-family: Georgia, serif;
}

.incident-article .review-content p {
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

/* =========================================================
   INCIDENT REPORT TIMELINE
========================================================= */

.timeline {
    list-style: none;
    margin: 1.5rem 0 2rem;
    padding: 0;
    border-left: 3px solid #C7A46C;
}

.timeline li {
    position: relative;
    margin-left: 1.25rem;
    padding: 0 0 1.5rem 1.25rem;
    line-height: 1.65;
}

.timeline li::before {
    content: "";
    position: absolute;
    left: -1.7rem;
    top: 0.35rem;
    width: 12px;
    height: 12px;
    background: #C7A46C;
    border: 3px solid #FFF8E8;
    border-radius: 50%;
    box-shadow: 0 0 0 2px #C7A46C;
}

.timeline li:last-child {
    padding-bottom: 0;
}

.timeline strong {
    display: block;
    margin-bottom: 0.25rem;
    color: #001A39;
    font-size: 1.05rem;
}

/* =========================================================
   INCIDENT REPORT OUTCOME
========================================================= */

.incident-status {
    display: inline-block;
    margin: 0.5rem 0 1rem;
    padding: 0.6rem 0.9rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.incident-status.approved {
    background: #E8F4EA;
    color: #25663A;
    border: 1px solid #9BC6A5;
}

.incident-footer-note {
    margin: 2.5rem 0 0;
    padding: 1.5rem;
    background: #F8F3E8;
    border-left: 5px solid #C7A46C;
    border-radius: 10px;
    color: #001A39;
    line-height: 1.6;
    text-align: left;
}

/* =========================================================
   INCIDENT REPORT ARTICLE - MOBILE
========================================================= */

@media (max-width: 700px) {

    .incident-article {
        padding: 2.25rem 16px;
    }

    .incident-hero h1 {
        font-size: 2rem;
    }

    .incident-article .verdict-box,
    .incident-article .affiliate-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .incident-article .case-grid {
        grid-template-columns: 1fr;
    }

    .timeline li {
        margin-left: 1rem;
        padding-left: 1rem;
    }
}

/* =========================================================
   INCIDENT REPORT LANDING PAGE
========================================================= */

.incident-card-icon {
    height: 200px;
    display: grid;
    place-items: center;
    background: #F8F3E8;
    color: #C7A46C;
    font-size: 4rem;
    border-bottom: 1px solid #E3D2B3;
}

.incident-card-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.incident-card-meta span {
    margin-top: 0;
}

.incident-severity {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    color: #555;
    font-size: 0.9rem;
    font-weight: 700;
}

.severity-dot {
    width: 10px;
    height: 10px;
    background: #D49A28;
    border-radius: 50%;
}

/* =========================================================
   INCIDENT REPORT LANDING PAGE - MOBILE
========================================================= */

@media (max-width: 700px) {

    .incident-card-icon {
        height: 150px;
        font-size: 3rem;
    }

    .incident-severity {
        justify-content: center;
        text-align: center;
    }

}

/* ===================================
   PRODUCT REVIEW PAGE
=================================== */

.review-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem;
}

.review-heading {
    text-align: center;
    margin-bottom: 2rem;
}

.review-category {
    color: #C7A46C;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.review-intro {
    max-width: 700px;
    margin: 1rem auto 0;
    font-size: 1.1rem;
    color: #555;
}

.review-overview {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
    margin: 2rem 0;
}

.review-main-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.review-summary-card {
    background: #f8f9fb;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

.review-rating,
.final-rating {
    font-size: 2rem;
    margin: 1rem 0;
}

.half-rating {
    font-size: 1.4rem;
    vertical-align: middle;
}

.half-paw {
    color: #C7A46C;
    font-weight: bold;
    font-size: 2rem;
    margin-left: 2px;
    line-height: 1;
    display: inline-block;
}

.review-details dt {
    font-weight: bold;
    color: #1D3557;
}

.review-details dd {
    margin-bottom: 1rem;
}

.photo-caption {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-bottom: 2rem;
}

.review-section {
    margin-bottom: 3rem;
}

.review-section h2 {
    color: #1D3557;
    margin-bottom: 1rem;
}

.review-section h3 {
    margin-top: 1.5rem;
    color: #333;
}

.score-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 1.5rem;
}

.score-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

.score-card .score {
    font-size: 2rem;
    font-weight: bold;
    color: #C7A46C;
}

.safety-note {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: #fff8e6;
    border-left: 5px solid #C7A46C;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.safety-note i {
    font-size: 2rem;
    color: #C7A46C;
}

.pros-cons-section {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.pros-card,
.cons-card {
    background: #f8f9fb;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

.pros-card h2 {
    color: #2E7D32;
}

.cons-card h2 {
    color: #B00020;
}

.final-verdict {
    text-align: center;
    background: #f8f9fb;
    padding: 2rem;
    border-radius: 12px;
    margin: 3rem 0;
}

.verdict-label {
    text-transform: uppercase;
    color: #C7A46C;
    font-weight: bold;
    letter-spacing: 1px;
}

.enzo-note {
    margin-top: 2rem;
    font-style: italic;
}

.review-disclosure {
    margin-top: 3rem;
    padding: 1.5rem;
    background: #eef3f8;
    border-radius: 12px;
}

.back-to-reviews {
    text-align: center;
    margin: 3rem 0;
}

.back-to-reviews a {
    display: inline-block;
    background: #1D3557;
    color: white;
    padding: .8rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    transition: .25s;
}

.back-to-reviews a:hover {
    background: #284b75;
}


.filter-button {
    background: transparent;
    color: #001b3b;
    border: 3px solid #c9a461;
    border-radius: 999px;
    padding: 0.8rem 1.75rem;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.filter-button:hover {
    transform: translateY(-2px);
}

.filter-button.active {
    background: #c9a461;
    color: #001b3b;
}

/* =====================================================
   LATEST YOUTUBE UPLOADS
===================================================== */

.latest-videos-section {
    padding: 3rem 1.5rem 4rem;
}

.latest-videos-section .section-heading {
    max-width: 760px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.latest-videos-section .video-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem 2rem;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.latest-videos-section .video-card {
    min-width: 0;
}

.latest-videos-section .video-card-link {
    display: block;
    color: #1d3557;
    text-decoration: none;
}

.latest-video-thumbnail {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    background: #111;
}

.latest-video-thumbnail img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.latest-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    width: 64px;
    height: 46px;
    place-items: center;
    border-radius: 12px;
    background: #ff0033;
    color: #fff;
    font-size: 1.25rem;
    transform: translate(-50%, -50%);
    transition:
        transform 0.2s ease,
        background-color 0.2s ease;
}

.latest-video-youtube {
    position: absolute;
    right: 0.75rem;
    bottom: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    background: rgba(20, 20, 20, 0.78);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
}

.latest-video-title {
    margin: 0.9rem 0 0;
    color: #1d3557;
    font-size: 1.05rem;
    line-height: 1.4;
    text-align: center;
}

.video-card-link:hover .latest-video-title {
    text-decoration: underline;
    text-decoration-color: #c7a46c;
    text-underline-offset: 4px;
}

.video-card-link:hover .latest-video-play,
.video-card-link:focus-visible .latest-video-play {
    background: #d9002b;
    transform: translate(-50%, -50%) scale(1.08);
}

.video-card-link:focus-visible {
    border-radius: 12px;
    outline: 3px solid #c7a46c;
    outline-offset: 5px;
}

/* =========================================================
   LATEST VIDEOS - MOBILE
========================================================= */

@media (max-width: 768px) {

    .latest-videos-section {
        padding: 2.5rem 1rem 3rem;
    }

    .latest-videos-section .video-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .latest-video-title {
        font-size: 1rem;
    }

    .latest-video-youtube {
        right: 0.6rem;
        bottom: 0.6rem;
        font-size: 0.7rem;
    }

}

/* =====================================================
   MEET THE CEO / ABOUT ENZO PAGE
====================================================== */

.about-enzo-page {
    background: #f7f5f0;
    color: #1d2d44;
}


/* =====================================================
   SHARED ABOUT PAGE TYPOGRAPHY
====================================================== */

.about-enzo-page h1,
.about-enzo-page h2,
.about-enzo-page h3 {
    color: #1d2d44;
}

.about-enzo-page h1 {
    margin: 0 0 24px;
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 0.95;
    letter-spacing: -0.045em;
}

.about-enzo-page h2 {
    margin: 0 0 22px;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.05;
    letter-spacing: -0.025em;
}

.about-enzo-page h3 {
    margin: 0 0 12px;
    font-size: 1.3rem;
    line-height: 1.25;
}

.about-enzo-page p {
    line-height: 1.75;
}

.about-enzo-page .eyebrow {
    margin: 0 0 14px;
    color: #9a7844;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    line-height: 1.4;
    text-transform: uppercase;
}

.chapter-number {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 15px;
    color: #9a7844;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.chapter-number::before {
    width: 32px;
    height: 1px;
    background: #c7a46c;
    content: "";
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 55px;
}

.centered-heading {
    text-align: center;
}

.centered-heading p:not(.eyebrow) {
    max-width: 650px;
    margin-right: auto;
    margin-left: auto;
    color: #536277;
    font-size: 1.05rem;
}


/* =====================================================
   HERO
====================================================== */

.about-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
    gap: 70px;
    align-items: center;
    max-width: 1240px;
    min-height: 720px;
    margin: 0 auto;
    padding: 90px 45px;
}

.about-hero-content {
    max-width: 670px;
}

.about-hero-tagline {
    margin: 0 0 25px;
    color: #1d2d44;
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    font-weight: 700;
    line-height: 1.45 !important;
}

.about-hero-content > p:not(.eyebrow):not(.about-hero-tagline) {
    color: #536277;
    font-size: 1.06rem;
}

.about-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.about-hero-badges span {
    display: inline-flex;
    gap: 9px;
    align-items: center;
    padding: 11px 15px;
    border: 1px solid rgba(199, 164, 108, 0.5);
    border-radius: 999px;
    background: #ffffff;
    color: #1d2d44;
    font-size: 0.88rem;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(29, 45, 68, 0.06);
}

.about-hero-badges i {
    color: #c7a46c;
}

.about-hero-image {
    min-height: 560px;
    border-radius: 220px 220px 28px 28px;
    box-shadow: 0 30px 70px rgba(29, 45, 68, 0.16);
}


/* =====================================================
   PHOTO PLACEHOLDERS AND REAL IMAGES
====================================================== */

.photo-placeholder {
    position: relative;
    display: flex;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    margin: 0;
    border: 2px dashed rgba(154, 120, 68, 0.48);
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.96),
            rgba(229, 225, 216, 0.92)
        );
}

.photo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    max-width: 320px;
    padding: 35px;
    color: #677386;
    text-align: center;
}

.placeholder-inner i {
    color: #c7a46c;
    font-size: 2rem;
}

.placeholder-inner strong {
    color: #1d2d44;
    font-size: 1rem;
}

.placeholder-inner span {
    font-size: 0.88rem;
    line-height: 1.55;
}


/* =====================================================
   CEO PROFILE
====================================================== */

.ceo-profile-section {
    padding: 0 45px 100px;
}

.ceo-profile-card {
    max-width: 1120px;
    margin: 0 auto;
    padding: 55px;
    border: 1px solid rgba(199, 164, 108, 0.38);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 25px 60px rgba(29, 45, 68, 0.08);
}

.ceo-profile-heading {
    margin-bottom: 35px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e7e2d8;
}

.ceo-profile-heading h2 {
    margin-bottom: 0;
}

.ceo-profile-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px 35px;
    margin: 0;
}

.ceo-profile-grid div {
    min-width: 0;
}

.ceo-profile-grid dt {
    margin-bottom: 7px;
    color: #9a7844;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ceo-profile-grid dd {
    margin: 0;
    color: #1d2d44;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.45;
}


/* =====================================================
   STORY SECTIONS
====================================================== */

.about-story-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
    gap: 80px;
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
    padding: 110px 45px;
}

.about-story-section + .about-story-section {
    border-top: 1px solid rgba(199, 164, 108, 0.22);
}

.story-section-reversed .story-copy {
    order: 2;
}

.story-section-reversed .story-image {
    order: 1;
}

.story-copy p:not(.chapter-number):not(.story-aside) {
    margin: 0 0 18px;
    color: #536277;
    font-size: 1.02rem;
}

.story-image {
    overflow: hidden;

    min-height: 480px;

    border-radius: 24px;
    box-shadow: 0 24px 55px rgba(29, 45, 68, 0.12);
}

.story-image img {
    display: block;

    width: 100%;
    height: 480px;

    object-fit: cover;
    object-position: center;

    border-radius: 24px;
}

.story-aside {
    margin: 30px 0 0;
    padding: 22px 25px;
    border-left: 4px solid #c7a46c;
    background: #ffffff;
    color: #1d2d44;
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.5 !important;
    box-shadow: 0 10px 30px rgba(29, 45, 68, 0.06);
}


/* =====================================================
   MEMORY STRIP
====================================================== */

.memory-strip-section {
    padding: 110px 45px;
    background: #1d2d44;
}

.memory-strip-section h2,
.memory-strip-section .eyebrow {
    color: #ffffff;
}

.memory-strip-section .eyebrow {
    color: #c7a46c;
}

.memory-strip-section .centered-heading p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.72);
}

.memory-strip-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    max-width: 1180px;
    margin: 0 auto;
}

.memory-photo {
    min-height: 390px;
    border-color: rgba(199, 164, 108, 0.65);
    border-radius: 20px;
}

.memory-photo:nth-child(2) {
    transform: translateY(28px);
}


/* =====================================================
   NAME STORY
====================================================== */

.name-story-section {
    display: grid;
    grid-template-columns: 120px minmax(0, 780px);
    gap: 40px;
    justify-content: center;
    padding: 120px 45px;
    background: #ffffff;
}

.name-story-icon {
    display: flex;
    width: 105px;
    height: 105px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #1d2d44;
    color: #c7a46c;
    font-size: 2.5rem;
    box-shadow: 0 20px 45px rgba(29, 45, 68, 0.16);
}

.name-story-copy p:not(.eyebrow):not(.featured-quote) {
    color: #536277;
    font-size: 1.03rem;
}

.featured-quote {
    margin: 30px 0 0;
    color: #9a7844;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-style: italic;
    font-weight: 700;
    line-height: 1.2 !important;
}


/* =====================================================
   RULES COMPARISON
====================================================== */

.rules-comparison {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 32px 0;
}

.rules-column {
    padding: 24px;
    border-radius: 17px;
}

.rules-column h3 {
    font-size: 1rem;
}

.rules-column ul {
    display: grid;
    gap: 13px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.rules-column li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: #34445b;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.45;
}

.rules-column i {
    margin-top: 3px;
}

.original-rules {
    background: #f4ece8;
}

.original-rules i {
    color: #a5574d;
}

.current-rules {
    background: #edf1e9;
}

.current-rules i {
    color: #557754;
}


/* =====================================================
   TURNING POINT
====================================================== */

.turning-point-section {
    padding: 115px 45px;
    background:
        linear-gradient(
            rgba(29, 45, 68, 0.97),
            rgba(29, 45, 68, 0.97)
        );
    color: #ffffff;
}

.turning-point-heading {
    max-width: 1120px;
    margin: 0 auto 50px;
}

.turning-point-heading h2 {
    color: #ffffff;
}

.turning-point-heading .chapter-number {
    color: #c7a46c;
}

.turning-point-content {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.8fr);
    gap: 70px;
    align-items: center;
    max-width: 1120px;
    margin: 0 auto;
}

.turning-point-copy p {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.02rem;
}

.turning-point-copy blockquote {
    margin: 35px 0 0;
    padding: 25px 0 25px 30px;
    border-left: 4px solid #c7a46c;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    line-height: 1.5;
}

.turning-point-copy blockquote strong {
    display: block;
    margin-top: 8px;
    color: #c7a46c;
}

.turning-point-image {
    min-height: 500px;
    border-color: rgba(199, 164, 108, 0.75);
    border-radius: 24px;
}


/* =====================================================
   LIFE WITH THE CEO
====================================================== */

.ceo-life-section {
    padding: 120px 45px;
}

.ceo-life-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;

    max-width: 1180px;
    margin: 0 auto;
}

.ceo-life-card {
    display: grid;
    grid-template-columns: minmax(270px, 52%) minmax(0, 1fr);
    align-items: stretch;

    min-height: 320px;
    overflow: hidden;

    border: 1px solid rgba(199, 164, 108, 0.28);
    border-radius: 20px;

    background: #ffffff;
    box-shadow: 0 18px 45px rgba(29, 45, 68, 0.07);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.ceo-life-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 55px rgba(29, 45, 68, 0.12);
}

.life-card-image {
    width: 100%;
    height: 100%;
    min-height: 320px;

    overflow: hidden;

    border: 0;
    border-right: 1px solid rgba(199, 164, 108, 0.22);
    border-radius: 0;
}

.life-card-image img {
    display: block;

    width: 100%;
    height: 100%;
    min-height: 320px;

    object-fit: cover;
    object-position: center;
}

.life-card-image .placeholder-inner {
    padding: 22px;
}

.life-card-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 26px 24px;
}

.life-card-copy p {
    margin: 0 0 13px;

    color: #5a687a;
    font-size: 0.94rem;
}

.life-card-copy p:last-child {
    margin-bottom: 0;
}

/* =====================================================
   FOOD NEGOTIATIONS
====================================================== */

.food-negotiation-section {
    display: grid;
    grid-template-columns: 110px minmax(0, 790px);
    gap: 42px;
    justify-content: center;
    padding: 110px 45px;
    background: #e9e4d9;
}

.food-negotiation-icon {
    display: flex;
    width: 95px;
    height: 95px;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    background: #c7a46c;
    color: #1d2d44;
    font-size: 2.2rem;
    transform: rotate(-4deg);
}

.food-negotiation-copy p:not(.eyebrow):not(.featured-quote) {
    color: #536277;
    font-size: 1.02rem;
}


/* =====================================================
   PERSONALITY
====================================================== */

.personality-section {
    padding: 120px 45px;
    background: #ffffff;
}

.personality-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    max-width: 1180px;
    margin: 0 auto;
}

.personality-grid article {
    padding: 32px 26px;
    border-top: 4px solid #c7a46c;
    border-radius: 0 0 18px 18px;
    background: #f7f5f0;
}

.personality-grid article > i {
    margin-bottom: 20px;
    color: #c7a46c;
    font-size: 1.9rem;
}

.personality-grid p {
    margin: 0 0 12px;
    color: #59687a;
    font-size: 0.93rem;
}


/* =====================================================
   THREAT ASSESSMENT
====================================================== */

.threat-assessment-section {
    padding: 110px 45px;
    background: #1d2d44;
}

.threat-assessment-heading {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}

.threat-assessment-heading h2 {
    color: #ffffff;
}

.threat-assessment-heading .eyebrow {
    color: #c7a46c;
}

.threat-assessment-heading > p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.7);
}

.threat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    max-width: 1050px;
    margin: 0 auto;
}

.threat-grid article {
    padding: 35px 30px;
    border: 1px solid rgba(199, 164, 108, 0.35);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
}

.threat-grid article > i {
    margin-bottom: 20px;
    color: #c7a46c;
    font-size: 2rem;
}

.threat-grid h3 {
    color: #ffffff;
}

.threat-grid p {
    margin: 0 0 10px;
    color: rgba(255, 255, 255, 0.69);
    font-size: 0.93rem;
}


/* =====================================================
   BRAND ORIGIN
====================================================== */

.brand-origin-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(370px, 0.85fr);
    gap: 80px;
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
    padding: 120px 45px;
}

.brand-origin-content p:not(.chapter-number) {
    margin: 0 0 18px;
    color: #536277;
    font-size: 1.02rem;
}

.brand-origin-image {
    min-height: 520px;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(29, 45, 68, 0.14);
}


/* =====================================================
   TIMELINE
====================================================== */

.timeline-section {
    padding: 120px 45px;
    background: #ebe6dc;
}

.enzo-timeline {
    position: relative;
    max-width: 850px;
    margin: 0 auto;
}

.enzo-timeline::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 27px;
    width: 2px;
    background: rgba(154, 120, 68, 0.4);
    content: "";
}

.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 28px;
    margin-bottom: 35px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: relative;
    z-index: 1;
    display: flex;
    width: 56px;
    height: 56px;
    align-items: center;
    justify-content: center;
    border: 5px solid #ebe6dc;
    border-radius: 50%;
    background: #1d2d44;
    color: #c7a46c;
}

.timeline-content {
    padding: 27px 30px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(29, 45, 68, 0.07);
}

.timeline-age {
    display: block;
    margin-bottom: 7px;
    color: #9a7844;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.timeline-content p {
    margin: 0;
    color: #59687a;
    font-size: 0.95rem;
}


/* =====================================================
   BEHIND THE SCENES GALLERY
====================================================== */

.behind-scenes-section {
    padding: 120px 45px;
    background: #ffffff;
}

.behind-scenes-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 240px;
    gap: 18px;
    max-width: 1180px;
    margin: 0 auto;
}

.gallery-photo {
    min-height: 0;
    border-radius: 18px;
}

.gallery-photo-large {
    grid-row: span 2;
    grid-column: span 2;
}

.gallery-photo-wide {
    grid-column: span 2;
}


/* =====================================================
   CLOSING SECTION
====================================================== */

.about-closing-section {
    padding: 125px 45px;
    background: #f7f5f0;
    text-align: center;
}

.about-closing-section > * {
    max-width: 780px;
    width: 100%;

    margin-left: auto;
    margin-right: auto;

    text-align: center;
}

.about-closing-section .eyebrow {
    width: 100%;
    margin: 0 auto 18px;
    text-align: center;
}

.about-closing-paw {
    margin: 0 auto 28px;
}

.about-closing-section h2 {
    max-width: 700px;
    margin: 0 auto 30px;
    text-align: center;
}

.about-closing-section .eyebrow {
    text-align: center;
}

.about-closing-section p {
    text-align: center;
}

.about-closing-signoff {
    text-align: center;
}

.about-closing-section .primary-button {
    display: inline-flex;
    margin: 35px auto 0;
}

.about-closing-paw {
    display: flex;
    width: 80px;
    height: 80px;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    border-radius: 50%;
    background: #1d2d44;
    color: #c7a46c;
    font-size: 2rem;
}

.about-closing-section p:not(.eyebrow):not(.about-closing-signoff) {
    color: #536277;
    font-size: 1.03rem;
}

.about-closing-signoff {
    margin-top: 30px;
    color: #1d2d44;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.35rem, 3vw, 1.8rem);
    font-style: italic;
    font-weight: 700;
}

.about-closing-section .primary-button {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    padding: 15px 22px;
    border-radius: 999px;
    background: #1d2d44;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.about-closing-section .primary-button:hover {
    transform: translateY(-2px);
    background: #2b4263;
}


/* =====================================================
   TABLET
====================================================== */

@media (max-width: 1050px) {

    .about-hero {
        grid-template-columns: 1fr 0.85fr;
        gap: 45px;
    }

    .ceo-profile-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-story-section,
    .turning-point-content,
    .brand-origin-section {
        gap: 50px;
    }

    .ceo-life-grid {
        grid-template-columns: 1fr;
        max-width: 780px;
    }

    .personality-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* =====================================================
   MOBILE
====================================================== */

@media (max-width: 780px) {

    .about-hero,
    .about-story-section,
    .turning-point-content,
    .brand-origin-section {
        grid-template-columns: 1fr;
    }

    .about-hero {
        min-height: auto;
        padding: 65px 22px 80px;
    }

    .about-hero-content {
        max-width: none;
    }

    .about-hero-image {
        min-height: 430px;
        border-radius: 170px 170px 22px 22px;
    }

    .ceo-profile-section {
        padding: 0 22px 75px;
    }

    .ceo-profile-card {
        padding: 35px 25px;
    }

    .ceo-profile-grid {
        grid-template-columns: 1fr 1fr;
        gap: 26px 20px;
    }

    .about-story-section {
        gap: 38px;
        padding: 80px 22px;
    }

    .story-section-reversed .story-copy,
    .story-section-reversed .story-image {
        order: initial;
    }

    .story-image {
        min-height: 390px;
    }

    .memory-strip-section,
    .turning-point-section,
    .ceo-life-section,
    .personality-section,
    .threat-assessment-section,
    .timeline-section,
    .behind-scenes-section {
        padding: 85px 22px;
    }

    .memory-strip-grid {
        grid-template-columns: 1fr;
    }

    .memory-photo {
        min-height: 380px;
    }

    .memory-photo:nth-child(2) {
        transform: none;
    }

    .name-story-section,
    .food-negotiation-section {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 85px 22px;
    }

    .name-story-icon,
    .food-negotiation-icon {
        width: 78px;
        height: 78px;
        font-size: 1.8rem;
    }

    .rules-comparison {
        grid-template-columns: 1fr;
    }

    .turning-point-image {
        min-height: 410px;
    }

    .ceo-life-card {
        grid-template-columns: 1fr;
    }

    .life-card-image {
        min-height: 290px;
        border-right: 0;
        border-bottom: 1px dashed rgba(154, 120, 68, 0.42);
    }

    .personality-grid,
    .threat-grid {
        grid-template-columns: 1fr;
    }

    .brand-origin-section {
        padding: 85px 22px;
    }

    .brand-origin-image {
        min-height: 420px;
    }

    .behind-scenes-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 210px;
    }

    .gallery-photo-large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .about-closing-section {
        padding: 90px 22px;
    }

}


/* =====================================================
   SMALL MOBILE
====================================================== */

@media (max-width: 520px) {

    .about-enzo-page h1 {
        font-size: 3.1rem;
    }

    .about-enzo-page h2 {
        font-size: 2.15rem;
    }

    .about-hero-badges {
        align-items: stretch;
        flex-direction: column;
    }

    .about-hero-badges span {
        justify-content: center;
    }

    .about-hero-image {
        min-height: 350px;
    }

    .ceo-profile-grid {
        grid-template-columns: 1fr;
    }

    .ceo-life-card {
        min-height: 0;
    }

    .timeline-item {
        grid-template-columns: 46px minmax(0, 1fr);
        gap: 18px;
    }

    .enzo-timeline::before {
        left: 22px;
    }

    .timeline-marker {
        width: 46px;
        height: 46px;
    }

    .timeline-content {
        padding: 23px 21px;
    }

    .behind-scenes-grid {
        display: flex;
        flex-direction: column;
    }

    .gallery-photo,
    .gallery-photo-large,
    .gallery-photo-wide {
        min-height: 310px;
    }

}
/* =========================================================
   REUSABLE HEADER
========================================================= */

#site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.ehn-header {
    position: relative;
    z-index: 1002;

    width: 100%;

    background: #001a39;
    border-bottom: 3px solid #c7a46c;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.16);
}

.ehn-header-inner {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;

    width: min(1450px, calc(100% - 3rem));
    min-height: 72px;
    margin: 0 auto;
}


/* =========================================================
   HEADER LOGO
========================================================= */

.ehn-logo-link {
    display: inline-flex;
    align-items: center;

    text-decoration: none;
}

.ehn-site-logo {
    display: block;

    width: auto;
    max-width: 165px;
    height: 48px;

    object-fit: contain;
}


/* =========================================================
   MENU BUTTON
========================================================= */

.ehn-menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;

    min-width: 116px;
    min-height: 46px;
    padding: 0.6rem 0.9rem;

    font: inherit;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: #ffffff;
    background: transparent;

    border: 1px solid rgba(199, 164, 108, 0.75);
    border-radius: 6px;

    cursor: pointer;

    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.ehn-menu-button:hover,
.ehn-menu-button:focus-visible {
    color: #001a39;
    background: #c7a46c;
    border-color: #c7a46c;
    box-shadow: 0 0 18px rgba(199, 164, 108, 0.35);
}

.ehn-menu-button:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.9);
    outline-offset: 3px;
}


/* =========================================================
   BURGER ICON
========================================================= */

.ehn-menu-icon {
    position: relative;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    width: 23px;
    height: 17px;
}

.ehn-menu-icon span {
    display: block;

    width: 100%;
    height: 2px;

    background: currentColor;
    border-radius: 10px;

    transform-origin: center;

    transition:
        transform 0.25s ease,
        opacity 0.2s ease;
}

.ehn-header.menu-open .ehn-menu-icon span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.ehn-header.menu-open .ehn-menu-icon span:nth-child(2) {
    opacity: 0;
}

.ehn-header.menu-open .ehn-menu-icon span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}


/* =========================================================
   DROPDOWN NAVIGATION
========================================================= */

.ehn-navigation {
    position: absolute;
    top: calc(100% + 3px);
    right: 0;

    width: min(380px, calc(100vw - 2rem));
    max-height: calc(100vh - 90px);

    overflow-y: auto;

    background: #ffffff;

    border: 1px solid rgba(0, 26, 57, 0.12);
    border-top: 4px solid #c7a46c;
    border-radius: 0 0 10px 10px;

    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);

    opacity: 0;
    visibility: hidden;

    transform: translateY(-10px);
    pointer-events: none;

    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease;
}

.ehn-navigation.is-open {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
    pointer-events: auto;
}


/* =========================================================
   NAVIGATION HEADING
========================================================= */

.ehn-navigation-heading {
    padding: 1rem 1.25rem;

    color: #ffffff;
    background: #001a39;

    text-align: center;
}

.ehn-navigation-eyebrow {
    display: block;

    margin-bottom: 0.25rem;

    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;

    color: #c7a46c;
}

.ehn-navigation-title {
    display: block;

    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.2;
}


/* =========================================================
   MAIN NAVIGATION LINKS
========================================================= */

.ehn-navigation-links {
    display: grid;
    gap: 0.25rem;

    padding: 0.65rem;
}

.ehn-navigation-links a {
    display: grid;
    grid-template-columns: 28px 1fr;
    align-items: center;
    gap: 0.75rem;

    min-height: 46px;
    padding: 0.65rem 0.85rem;

    font-size: 0.92rem;
    font-weight: 650;

    color: #001a39;
    text-decoration: none;

    border-radius: 6px;

    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        transform 0.2s ease;
}

.ehn-navigation-links a i {
    width: 22px;

    color: #c7a46c;

    text-align: center;
}

.ehn-navigation-links a:hover,
.ehn-navigation-links a:focus-visible {
    color: #001a39;
    background: rgba(199, 164, 108, 0.2);

    transform: translateX(3px);
}

.ehn-navigation-links a:focus-visible {
    outline: 2px solid #001a39;
    outline-offset: -2px;
}

.ehn-navigation-links a.is-active {
    color: #ffffff;
    background: #001a39;
}

.ehn-navigation-links a.is-active i {
    color: #c7a46c;
}


/* =========================================================
   NAVIGATION LEGAL LINKS
========================================================= */

.ehn-navigation-footer {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.4rem 0.9rem;

    padding: 0.8rem 1rem;

    background: #f4f4f4;
    border-top: 1px solid rgba(0, 26, 57, 0.12);
}

.ehn-navigation-footer a {
    font-size: 0.7rem;
    font-weight: 600;

    color: #53606d;
    text-decoration: none;
}

.ehn-navigation-footer a:hover,
.ehn-navigation-footer a:focus-visible {
    color: #001a39;
    text-decoration: underline;
}


/* =========================================================
   MENU OVERLAY
========================================================= */

.ehn-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 1001;

    background: rgba(0, 15, 34, 0.58);

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.2s ease,
        visibility 0.2s ease;
}

.ehn-menu-overlay.is-visible {
    opacity: 1;
    visibility: visible;

    pointer-events: auto;
}

body.ehn-menu-is-open {
    overflow: hidden;
}


/* =========================================================
   REUSABLE FOOTER
========================================================= */

#site-footer {
    width: 100%;
}

.site-footer {
    display: flex;
    flex-direction: column;
    align-items: center;

    width: 100%;
    padding: 2.5rem 1.5rem 2rem;

    box-sizing: border-box;

    color: #ffffff;
    background: #001a39;

    text-align: center;
}

.footer-logo {
    display: block;

    width: auto;
    max-width: 190px;
    height: 58px;
    margin-bottom: 1.5rem;

    object-fit: contain;
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem 1.8rem;

    width: min(1100px, 100%);
}

.footer-nav a {
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;

    color: #ffffff;
    text-decoration: none;

    transition: color 0.2s ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
    color: #c7a46c;
}

.footer-divider {
    width: 58px;
    height: 3px;
    margin: 1.5rem auto;

    background: #c7a46c;
    border-radius: 10px;
}


/* =========================================================
   FOOTER SOCIAL LINKS
========================================================= */

.footer-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.3rem;

    margin-bottom: 1.5rem;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 34px;
    min-height: 34px;

    font-size: 1.7rem;

    color: #c7a46c;
    text-decoration: none;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
    color: #ffffff;

    transform: translateY(-2px);
}

.footer-giphy-link {
    font-family: Arial, sans-serif;
    font-size: 1.5rem !important;
    font-weight: 500;
    letter-spacing: 0.02em;
}


/* =========================================================
   FOOTER LEGAL LINKS
========================================================= */

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem 1.4rem;

    margin-bottom: 1.35rem;
}

.footer-links a {
    font-size: 0.78rem;
    font-weight: 500;

    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;

    transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: #c7a46c;
}

.copyright {
    margin: 0;

    font-size: 0.76rem;
    line-height: 1.6;

    color: rgba(255, 255, 255, 0.82);
}

.gold-heart {
    color: #c7a46c;
}


/* =========================================================
   COMPONENT LOAD ERROR
========================================================= */

.component-error {
    margin: 0;
    padding: 1rem;

    color: #ffffff;
    background: #8b1e1e;

    text-align: center;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .ehn-header-inner {
        width: calc(100% - 2rem);
    }

    .footer-nav {
        gap: 0.75rem 1.25rem;
    }
}


/* =========================================================
   MOBILE HEADER AND FOOTER
========================================================= */

@media (max-width: 700px) {

    .ehn-header-inner {
        width: calc(100% - 1.5rem);
        min-height: 64px;
    }

    .ehn-site-logo {
        max-width: 145px;
        height: 43px;
    }

    .ehn-menu-button {
        min-width: 46px;
        min-height: 42px;
        padding: 0.55rem 0.65rem;
    }

    .ehn-menu-button-text {
        position: absolute;

        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;

        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;

        border: 0;
    }

    .ehn-navigation {
        position: fixed;
        top: 67px;
        right: 0;
        left: 0;

        width: 100%;
        max-height: calc(100vh - 67px);

        border-right: 0;
        border-left: 0;
        border-radius: 0;
    }

    .ehn-navigation-heading {
        padding: 0.9rem 1rem;
    }

    .ehn-navigation-title {
        font-size: 1.1rem;
    }

    .ehn-navigation-links {
        padding: 0.55rem;
    }

    .ehn-navigation-links a {
        min-height: 44px;
        padding: 0.6rem 0.8rem;
    }

    .ehn-navigation-footer {
        padding: 0.75rem 1rem;
    }

    .site-footer {
        padding: 2rem 1.25rem 1.6rem;
    }

    .footer-logo {
        max-width: 165px;
        height: 50px;
        margin-bottom: 1.25rem;
    }

    .footer-nav {
        flex-direction: column;
        gap: 0.8rem;
    }

    .footer-nav a {
        font-size: 0.8rem;
    }

    .footer-divider {
        margin: 1.35rem auto;
    }

    .footer-socials {
        gap: 1rem;
        margin-bottom: 1.35rem;
    }

    .footer-socials a {
        font-size: 1.5rem;
    }

    .footer-giphy-link {
        font-size: 1.3rem !important;
    }

    .footer-links {
        gap: 0.65rem 1rem;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .ehn-site-logo {
        max-width: 130px;
        height: 40px;
    }

    .ehn-menu-icon {
        width: 21px;
        height: 16px;
    }

    .ehn-navigation-links a {
        font-size: 0.88rem;
    }

    .footer-socials {
        gap: 0.8rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.55rem;
    }

    .copyright {
        max-width: 290px;
    }
}
/* =========================================================
   REACTION DEPARTMENT / GIPHY PAGE
========================================================= */

.giphy-page {
    color: #001a39;
    background: #f8f8f8;
}


/* =========================================================
   GIPHY HERO
========================================================= */

.giphy-hero {
    display: flex;
    justify-content: center;

    padding: 6rem 1.5rem;

    background:
        radial-gradient(
            circle at top right,
            rgba(199, 164, 108, 0.23),
            transparent 35%
        ),
        radial-gradient(
            circle at bottom left,
            rgba(255, 255, 255, 0.06),
            transparent 30%
        ),
        #001a39;
}

.giphy-hero-content {
    width: min(950px, 100%);

    color: #ffffff;
    text-align: center;
}

.giphy-hero .eyebrow {
    color: #c7a46c;
}

.giphy-hero h1 {
    max-width: 850px;
    margin: 0 auto 1.4rem;

    font-size: clamp(2.7rem, 6vw, 5rem);
    line-height: 1.05;

    color: #ffffff;
}

.giphy-hero-intro {
    max-width: 680px;
    margin: 0 auto;

    font-size: 1.15rem;
    line-height: 1.8;

    color: rgba(255, 255, 255, 0.88);
}


/* =========================================================
   GIPHY STATS
========================================================= */

.giphy-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;

    max-width: 780px;
    margin: 2.5rem auto;
}

.giphy-stat {
    display: flex;
    flex-direction: column;
    justify-content: center;

    min-height: 105px;
    padding: 1.25rem 1rem;

    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(199, 164, 108, 0.5);
    border-radius: 10px;
}

.giphy-stat strong {
    display: block;

    margin-bottom: 0.4rem;

    font-size: clamp(1.6rem, 3vw, 2.15rem);
    line-height: 1;

    color: #c7a46c;
}

.giphy-stat span {
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;

    color: #ffffff;
}


/* =========================================================
   GIPHY BUTTONS
========================================================= */

.giphy-primary-button,
.giphy-secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;

    min-height: 52px;
    padding: 0.8rem 1.35rem;

    box-sizing: border-box;

    font-weight: 750;
    text-decoration: none;

    border: 2px solid #c7a46c;
    border-radius: 7px;

    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.giphy-primary-button {
    color: #001a39;
    background: #c7a46c;
}

.giphy-primary-button:hover,
.giphy-primary-button:focus-visible {
    color: #ffffff;
    background: transparent;

    box-shadow: 0 8px 24px rgba(199, 164, 108, 0.2);
    transform: translateY(-2px);
}

.giphy-secondary-button {
    color: #ffffff;
    background: #001a39;
}

.giphy-secondary-button:hover,
.giphy-secondary-button:focus-visible {
    color: #001a39;
    background: #c7a46c;

    transform: translateY(-2px);
}

.giphy-wordmark {
    font-size: 1.05rem;
    letter-spacing: 0.03em;
}


/* =========================================================
   STORY SECTION
========================================================= */

.giphy-story {
    padding: 5rem 1.5rem;

    background: #ffffff;
}

.giphy-story-content {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 2.5rem;
    align-items: center;

    width: min(950px, 100%);
    margin: 0 auto;
}

.giphy-story-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 120px;
    height: 120px;

    font-size: 2.8rem;

    color: #001a39;
    background: #c7a46c;

    border-radius: 50%;
    box-shadow: 0 12px 28px rgba(0, 26, 57, 0.15);
}

.giphy-story-copy h2,
.featured-gifs-heading h2,
.find-enzo-content h2,
.giphy-form-copy h2,
.giphy-final-cta h2 {
    margin: 0.35rem 0 1rem;

    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
}

.giphy-story-copy p:not(.eyebrow) {
    margin: 0 0 1rem;

    font-size: 1.03rem;
    line-height: 1.8;

    color: #53606d;
}

.giphy-story-copy strong {
    color: #001a39;
}


/* =========================================================
   FEATURED GIFS
========================================================= */

.featured-gifs-section {
    padding: 5rem 1.5rem;
}

.featured-gifs-heading {
    width: min(750px, 100%);
    margin: 0 auto 3rem;

    text-align: center;
}

.featured-gifs-heading p:not(.eyebrow) {
    font-size: 1.05rem;
    line-height: 1.7;

    color: #53606d;
}

.giphy-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;

    width: min(1200px, 100%);
    margin: 0 auto;
}

.giphy-card {
    position: relative;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    background: #ffffff;
    border: 1px solid rgba(0, 26, 57, 0.08);
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 26, 57, 0.1);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.giphy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 38px rgba(0, 26, 57, 0.16);
}


/* =========================================================
   CASE FILE LABEL
========================================================= */

.giphy-case-file-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;

    min-height: 58px;
    padding: 0.7rem 1rem;

    color: #ffffff;
    background: #001a39;
    border-bottom: 3px solid #c7a46c;
}

.giphy-case-file-label span {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;

    color: rgba(255, 255, 255, 0.65);
}

.giphy-case-file-label strong {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;

    font-size: 0.77rem;
    letter-spacing: 0.06em;
    text-align: right;
    text-transform: uppercase;

    color: #c7a46c;
}


/* =========================================================
   GIF EMBED AREA
========================================================= */

.giphy-embed {
    position: relative;

    width: 100%;
    aspect-ratio: 1 / 1;

    overflow: hidden;
    background: #001a39;
}

.giphy-embed iframe {
    position: absolute;
    inset: 0;

    width: 100% !important;
    height: 100% !important;

    border: 0;
}

.giphy-embed-placeholder {
    position: absolute;
    inset: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;

    color: rgba(255, 255, 255, 0.72);

    background:
        linear-gradient(
            135deg,
            #001a39,
            #0b315d
        );
}

.giphy-embed-placeholder i {
    font-size: 2.5rem;

    color: #c7a46c;
}

.giphy-embed-placeholder span {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}


/* =========================================================
   GIF CARD CONTENT
========================================================= */

.giphy-card-content {
    display: flex;
    flex-direction: column;
    flex: 1;

    padding: 1.5rem;
}

.giphy-card-content h3 {
    margin: 0 0 0.55rem;

    font-size: 1.45rem;
    line-height: 1.2;
}

.giphy-case-note {
    margin: 0 0 1rem !important;

    font-size: 0.76rem;
    font-weight: 750;
    letter-spacing: 0.04em;
    text-transform: uppercase;

    color: #b18339 !important;
}

.giphy-card-content p:not(.giphy-case-note) {
    margin: 0 0 1.25rem;

    line-height: 1.65;

    color: #53606d;
}

.giphy-card-content a {
    margin-top: auto;

    font-weight: 750;

    color: #001a39;
    text-decoration: none;
}

.giphy-card-content a:hover,
.giphy-card-content a:focus-visible {
    color: #b18339;
}


/* =========================================================
   FIND ENZO
========================================================= */

.find-enzo-gifs {
    padding: 5rem 1.5rem;

    color: #ffffff;
    background: #001a39;
}

.find-enzo-content {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 2rem;
    align-items: center;

    width: min(900px, 100%);
    margin: 0 auto;
}

.find-enzo-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100px;
    height: 100px;

    font-size: 2.4rem;

    color: #001a39;
    background: #c7a46c;

    border-radius: 50%;
}

.find-enzo-content .eyebrow {
    color: #c7a46c;
}

.find-enzo-content h2 {
    color: #ffffff;
}

.find-enzo-content p:not(.eyebrow) {
    line-height: 1.7;

    color: rgba(255, 255, 255, 0.86);
}

.giphy-search-terms {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;

    margin-top: 1.25rem;
}

.giphy-search-terms span {
    display: inline-flex;

    padding: 0.55rem 0.9rem;

    font-size: 0.84rem;
    font-weight: 700;

    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(199, 164, 108, 0.7);
    border-radius: 999px;
}


/* =========================================================
   GIF SUGGESTION FORM
========================================================= */

.giphy-suggestion-section {
    padding: 5rem 1.5rem;

    background: #ffffff;
}

.giphy-request-form {
    width: min(950px, 100%);
    margin: 0 auto;

    overflow: hidden;

    background: #f8f8f8;
    border: 1px solid rgba(0, 26, 57, 0.14);
    border-radius: 12px;
    box-shadow: 0 16px 35px rgba(0, 26, 57, 0.1);
}

.giphy-form-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;

    padding: 1rem 1.5rem;

    color: #ffffff;
    background: #001a39;
    border-bottom: 4px solid #c7a46c;
}

.giphy-form-heading span {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    color: #c7a46c;
}

.giphy-form-heading strong {
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.giphy-form-body {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 2rem;
    align-items: center;

    padding: 2.5rem;
}

.giphy-form-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 105px;
    height: 105px;

    font-size: 2.4rem;

    color: #001a39;
    background: #c7a46c;

    border-radius: 10px;
    transform: rotate(-2deg);
}

.giphy-form-copy p:not(.eyebrow) {
    max-width: 670px;

    line-height: 1.75;

    color: #53606d;
}

.giphy-processing-note {
    margin: 1.25rem 0 !important;
    padding: 0.9rem 1rem;

    background: rgba(199, 164, 108, 0.16);
    border-left: 4px solid #c7a46c;
    border-radius: 0 6px 6px 0;
}

.giphy-processing-note strong {
    color: #001a39;
}


/* =========================================================
   FINAL CALL TO ACTION
========================================================= */

.giphy-final-cta {
    padding: 5rem 1.5rem;

    text-align: center;
}

.giphy-final-cta p:not(.eyebrow) {
    max-width: 620px;
    margin: 0 auto 1.7rem;

    font-size: 1.05rem;
    line-height: 1.7;

    color: #53606d;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .giphy-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .giphy-hero {
        padding: 4rem 1.25rem;
    }

    .giphy-hero h1 {
        font-size: 2.65rem;
    }

    .giphy-stats {
        grid-template-columns: 1fr;
    }

    .giphy-stat {
        min-height: auto;
        padding: 1.1rem;
    }

    .giphy-story,
    .featured-gifs-section,
    .find-enzo-gifs,
    .giphy-suggestion-section,
    .giphy-final-cta {
        padding: 3.75rem 1.25rem;
    }

    .giphy-story-content,
    .find-enzo-content,
    .giphy-form-body {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .giphy-story-icon,
    .find-enzo-icon,
    .giphy-form-icon {
        width: 82px;
        height: 82px;
        margin: 0 auto;

        font-size: 2rem;
    }

    .giphy-grid {
        grid-template-columns: 1fr;
    }

    .giphy-search-terms {
        justify-content: center;
    }

    .giphy-form-heading {
        flex-direction: column;
        gap: 0.35rem;

        text-align: center;
    }

    .giphy-form-body {
        padding: 2rem 1.25rem;
    }

    .giphy-processing-note {
        text-align: left;
    }

    .giphy-primary-button,
    .giphy-secondary-button {
        width: 100%;
        max-width: 350px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .giphy-hero h1 {
        font-size: 2.25rem;
    }

    .giphy-case-file-label {
        align-items: flex-start;
    }

    .giphy-case-file-label strong {
        max-width: 150px;
    }

    .giphy-card-content {
        padding: 1.25rem;
    }
}

.featured-giphy-image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    background: #001a39;
}

.featured-giphy-image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

/* =========================================================
   ENZO RECOMMENDS PAGE
========================================================= */

.recommends-page {
    color: #001a39;
    background: #f8f8f8;
}


/* =========================================================
   RECOMMENDS HERO
========================================================= */

.recommends-hero {
    display: flex;
    justify-content: center;

    padding: 6rem 1.5rem;

    background:
        radial-gradient(
            circle at top right,
            rgba(199, 164, 108, 0.24),
            transparent 34%
        ),
        #001a39;
}

.recommends-hero-content {
    width: min(850px, 100%);

    color: #ffffff;
    text-align: center;
}

.recommends-hero .eyebrow {
    color: #c7a46c;
}

.recommends-hero h1 {
    margin: 0 auto 1.25rem;

    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 1.05;

    color: #ffffff;
}

.recommends-hero p:not(.eyebrow) {
    max-width: 680px;
    margin: 0 auto;

    font-size: 1.12rem;
    line-height: 1.8;

    color: rgba(255, 255, 255, 0.88);
}


/* =========================================================
   RECOMMENDS INTRO
========================================================= */

.recommends-intro {
    padding: 5rem 1.5rem;

    background: #ffffff;
}

.recommends-intro-content {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 2.25rem;
    align-items: center;

    width: min(950px, 100%);
    margin: 0 auto;
}

.recommends-intro-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 110px;
    height: 110px;

    font-size: 2.6rem;

    color: #001a39;
    background: #c7a46c;

    border-radius: 50%;
}

.recommends-intro h2,
.recommends-section-heading h2,
.recommends-review-content h2,
.recommends-progress-body h2 {
    margin: 0.35rem 0 1rem;

    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
}

.recommends-intro p:not(.eyebrow) {
    margin: 0 0 1rem;

    line-height: 1.75;

    color: #53606d;
}


/* =========================================================
   RECOMMENDATION CATEGORY CARDS
========================================================= */

.recommends-categories {
    padding: 5rem 1.5rem;
}

.recommends-section-heading {
    width: min(750px, 100%);
    margin: 0 auto 3rem;

    text-align: center;
}

.recommends-section-heading p:not(.eyebrow) {
    line-height: 1.7;

    color: #53606d;
}

.recommends-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;

    width: min(1150px, 100%);
    margin: 0 auto;
}

.recommend-category-card {
    display: flex;
    flex-direction: column;

    min-height: 315px;
    padding: 2rem;

    box-sizing: border-box;

    background: #ffffff;
    border: 1px solid rgba(0, 26, 57, 0.08);
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(0, 26, 57, 0.09);

    text-align: center;
}

.recommend-category-icon {
    margin-bottom: 1.25rem;

    font-size: 2.3rem;

    color: #c7a46c;
}

.recommend-category-card h3 {
    margin: 0 0 0.9rem;

    font-size: 1.35rem;
}

.recommend-category-card p {
    margin: 0 0 1.5rem;

    line-height: 1.65;

    color: #53606d;
}

.recommend-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 44px;
    margin-top: auto;
    padding: 0.65rem 1rem;

    box-sizing: border-box;

    font-size: 0.75rem;
    font-weight: 750;
    letter-spacing: 0.04em;
    text-transform: uppercase;

    color: #001a39;
    background: rgba(199, 164, 108, 0.22);

    border-radius: 999px;
}


/* =========================================================
   PRODUCT REVIEW LINK
========================================================= */

.recommends-review-link {
    padding: 5rem 1.5rem;

    color: #ffffff;
    background: #001a39;

    text-align: center;
}

.recommends-review-content {
    width: min(750px, 100%);
    margin: 0 auto;
}

.recommends-review-content .eyebrow {
    color: #c7a46c;
}

.recommends-review-content h2 {
    color: #ffffff;
}

.recommends-review-content p:not(.eyebrow) {
    max-width: 620px;
    margin: 0 auto 1.75rem;

    line-height: 1.75;

    color: rgba(255, 255, 255, 0.86);
}

.recommends-primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;

    min-height: 52px;
    padding: 0.8rem 1.35rem;

    font-weight: 750;

    color: #001a39;
    background: #c7a46c;

    border: 2px solid #c7a46c;
    border-radius: 7px;

    text-decoration: none;

    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        transform 0.2s ease;
}

.recommends-primary-button:hover,
.recommends-primary-button:focus-visible {
    color: #ffffff;
    background: transparent;

    transform: translateY(-2px);
}


/* =========================================================
   WORK IN PROGRESS NOTICE
========================================================= */

.recommends-progress-section {
    padding: 5rem 1.5rem;

    background: #ffffff;
}

.recommends-progress-card {
    width: min(950px, 100%);
    margin: 0 auto;

    overflow: hidden;

    background: #f8f8f8;
    border: 1px solid rgba(0, 26, 57, 0.12);
    border-radius: 12px;
    box-shadow: 0 16px 35px rgba(0, 26, 57, 0.1);
}

.recommends-progress-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;

    padding: 1rem 1.5rem;

    color: #ffffff;
    background: #001a39;
    border-bottom: 4px solid #c7a46c;
}

.recommends-progress-heading span {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    color: #c7a46c;
}

.recommends-progress-heading strong {
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.recommends-progress-body {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 2rem;
    align-items: center;

    padding: 2.5rem;
}

.recommends-progress-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 105px;
    height: 105px;

    font-size: 2.4rem;

    color: #001a39;
    background: #c7a46c;

    border-radius: 10px;
}

.recommends-progress-body p {
    line-height: 1.75;

    color: #53606d;
}

.recommends-processing-note {
    margin-top: 1.25rem;
    padding: 0.9rem 1rem;

    background: rgba(199, 164, 108, 0.17);
    border-left: 4px solid #c7a46c;
    border-radius: 0 6px 6px 0;
}

.recommends-processing-note strong {
    color: #001a39;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .recommends-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .recommends-hero {
        padding: 4rem 1.25rem;
    }

    .recommends-hero h1 {
        font-size: 2.65rem;
    }

    .recommends-intro,
    .recommends-categories,
    .recommends-review-link,
    .recommends-progress-section {
        padding: 3.75rem 1.25rem;
    }

    .recommends-intro-content,
    .recommends-progress-body {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .recommends-intro-icon,
    .recommends-progress-icon {
        width: 82px;
        height: 82px;
        margin: 0 auto;

        font-size: 2rem;
    }

    .recommends-grid {
        grid-template-columns: 1fr;
    }

    .recommend-category-card {
        min-height: 290px;
    }

    .recommends-progress-heading {
        flex-direction: column;
        gap: 0.35rem;

        text-align: center;
    }

    .recommends-progress-body {
        padding: 2rem 1.25rem;
    }

    .recommends-processing-note {
        text-align: left;
    }

    .recommends-primary-button {
        width: 100%;
        max-width: 340px;

        box-sizing: border-box;
    }
}