
:root {
  --soil: #3A2417;
  --soil-dark: #2A1A10;
  --cream: #F7F1E4;
  --cream-2: #EFE6D2;
  --white: #FFFFFF;
  --red: #D5161F;
  --red-dark: #A80F17;
  --gold: #E8A33D;
  --green: #35513F;
  --ink: #241811;
  --muted: #6B5D4F;
  --line: #DCD0B4;
  --radius: 14px;
  --shadow: 0 12px 30px -12px rgba(42, 26, 16, 0.25);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}


h1,
h2,
h3,
h4 {
  font-family: 'Zilla Slab', serif;
  font-weight: 700;
  line-height: 1.12;
  color: var(--ink);
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--red);
  display: inline-block;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--red-dark);
  box-shadow: 0 10px 22px -8px rgba(213, 22, 31, 0.55);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-ghost:hover {
  border-color: var(--white);
}

.btn-sm {
  padding: 10px 18px;
  font-size: 0.85rem;
}

/* HEADER */

body > header,
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;

  background: var(--white);
  border-bottom: 3px solid var(--red);

  font-family: "Zilla Slab", serif;
  text-transform: uppercase;
}

.header-inner {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding-top: 16px;
  padding-bottom: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;

  color: var(--ink);

  font-family: "Zilla Slab", serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.site-logo {
  width: 110px;
  height: auto;
}

.logo .mark {
  width: 34px;
  height: 34px;

  display: grid;
  place-items: center;
}

.logo span.hi,
.footer-logo span.hi {
  color: var(--red);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.main-nav a {
  position: relative;

  padding: 6px 0;

  color: var(--ink);

  font-size: 0.94rem;
  font-weight: 800;

  transition: color 0.15s ease;
}

.main-nav a:hover,
.main-nav a.active,
.main-nav a[aria-current="page"] {
  color: var(--red);
}

.main-nav a::after {
  position: absolute;
  bottom: 0;
  left: 0;

  width: 0;
  height: 2px;

  content: "";

  background: var(--gold);

  transition: width 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after,
.main-nav a[aria-current="page"]::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-phone {
  color: var(--muted);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.82rem;
}

.header-phone strong {
  display: block;

  color: var(--ink);

  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;

  padding: 4px;

  border: 0;

  background: transparent;

  cursor: pointer;
}

.burger span {
  width: 24px;
  height: 2px;

  background: var(--ink);
}

/* HERO */

.hero {
  position: relative;
  background: #F3DFC0;
  overflow: hidden;
}

.hero-furrows {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
}

.hero-wide {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  align-items: stretch;
  min-height: 520px;
}

.hero-copy {
  padding: 88px 32px 88px 64px;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.5rem);
  color: var(--ink);
  margin: 18px 0 20px;
}

.hero-copy h1 em {
  font-style: normal;
  color: var(--red);
}

.hero-copy p {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 30px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-cta .btn-ghost {
  color: var(--ink);
  border-color: rgba(36, 24, 17, 0.35);
}

.hero-cta .btn-ghost:hover {
  border-color: var(--ink);
}

.hero-visual {
  position: relative;
  background: var(--green);
  display: grid;
  place-items: center;
  overflow: visible;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.06), transparent 60%);
}

.hero-visual .ring {
  position: absolute;
  width: 300px;
  height: 300px;
  border: 1.5px dashed rgba(232, 163, 61, 0.45);
  border-radius: 50%;
}

.hero-visual svg {
  position: relative;
  z-index: 2;
  width: 230px;
  height: 230px;
}

.hero-stat-plate {
  position: absolute;
  bottom: 36px;
  left: -40px;
  background: var(--white);
  color: var(--ink);
  border-radius: 10px;
  padding: 14px 18px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 20px;
  font-family: 'IBM Plex Mono', monospace;
  z-index: 3;
}

.hero-stat-plate strong {
  display: block;
  font-size: 1.3rem;
  font-family: 'Zilla Slab', serif;
  color: var(--red);
}

.hero-stat-plate span {
  font-size: 0.68rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-trust-strip {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding: 22px 64px;
  border-top: 1px solid rgba(36, 24, 17, 0.12);
  background: rgba(255, 255, 255, 0.35);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8rem;
  color: var(--ink);
}

.hero-trust-item strong {
  font-family: 'Zilla Slab', serif;
  color: var(--red);
  font-size: 1rem;
}

.hero-trust-item .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}

.furrow-divider {
  width: 100%;
  height: 34px;
  line-height: 0;
  background: var(--cream);
}

.furrow-divider svg {
  width: 100%;
  height: 100%;
}

/* SECTIONS */

.section {
  padding: 84px 0;
}

.section-alt {
  background: var(--cream-2);
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-head h2,
.about-grid h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-top: 14px;
}

.section-head p,
.about-grid p {
  color: var(--muted);
  margin-top: 14px;
  font-size: 1.02rem;
}

/* ABOUT */

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 46px;
  align-items: start;
}

.about-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}

.about-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.about-card p {
  margin-bottom: 24px;
}

.about-card p:last-child {
  margin-bottom: 0;
}

/* PRODUCTS */

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
}

.product-chip {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 18px;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.product-chip:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--red);
}

.product-chip .icon-wrap {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  background: var(--cream-2);
  border-radius: 50%;
  color: var(--red);
  font-size: 1.35rem;
}

.product-chip p {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}

/* CATEGORY CARDS */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.cat-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 30px 26px 26px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  position: relative;
  overflow: hidden;
}

.cat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.cat-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.cat-card:hover::before {
  transform: scaleX(1);
}

.cat-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--soil);
  color: var(--gold);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.cat-card h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.cat-count {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.cat-card ul {
  margin-bottom: 22px;
  flex-grow: 1;
}

.cat-card li {
  font-size: 0.92rem;
  color: var(--ink);
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
  display: flex;
  align-items: center;
  gap: 9px;
}

.cat-card li:last-child {
  border-bottom: none;
}

.cat-card li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

.read-more {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  transition: gap 0.15s ease;
}

.read-more:hover {
  gap: 10px;
}

/* WHY US */

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-item {
  padding: 6px;
}

.why-item .num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.78rem;
  color: var(--gold);
  background: var(--soil);
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 16px;
}

.why-item h3 {
  font-size: 1.12rem;
  margin-bottom: 10px;
}

.why-item p {
  color: var(--muted);
  font-size: 0.94rem;
}

/* PARTNERS */

.partners-band {
  background: var(--soil);
  color: var(--white);
  padding: 70px 0;
}

.partners-band .section-head h2 {
  color: var(--white);
}

.partners-band .section-head p {
  color: #CBB99E;
}

.partners-band .eyebrow {
  color: var(--gold);
}

.partners-band .eyebrow::before {
  background: var(--gold);
}

.partner-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.partner-badge {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 22px 14px;
  text-align: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  color: #EDE1CE;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.partner-badge:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--gold);
}

.partner-badge strong {
  display: block;
  font-family: 'Zilla Slab', serif;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: 0;
}

.impact-strip {
  margin-top: 44px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 34px;
}

.impact-item strong {
  display: block;
  font-family: 'Zilla Slab', serif;
  font-size: 2rem;
  color: var(--gold);
}

.impact-item span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #CBB99E;
}

/* BLOG */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.blog-card span {
  font-family: 'IBM Plex Mono', monospace;
  color: var(--red);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.blog-card h3 {
  font-size: 1.25rem;
  margin: 12px 0;
}

.blog-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.blog-card a {
  color: var(--red);
  font-weight: 700;
}

/* CTA */

.cta-strip {
  background: var(--red);
  color: var(--white);
  padding: 52px 0;
}

.cta-strip .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-strip h2,
.cta-strip h3 {
  color: var(--white);
  font-size: 1.5rem;
}

.cta-strip p {
  color: #FBDADC;
  margin-top: 6px;
}

.cta-strip .btn-primary {
  background: var(--white);
  color: var(--red);
}

.cta-strip .btn-primary:hover {
  background: var(--cream);
  box-shadow: none;
}

/* FOOTER */

footer {
  background: var(--soil-dark);
  color: #CBB99E;
  padding: 64px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Zilla Slab', serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 14px;
}

.footer-about p {
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 300px;
}

footer h4 {
  font-family: 'IBM Plex Mono', monospace;
  color: var(--white);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

footer ul li {
  margin-bottom: 11px;
  font-size: 0.92rem;
}

footer ul li a:hover {
  color: var(--white);
}

footer .contact-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;

  margin-bottom: 14px;

  font-size: 0.92rem;
}

footer .contact-line a {
  color: inherit;
  text-decoration: none;

  transition: color 0.15s ease;
}

footer .contact-line a:hover {
  color: var(--white);
}

footer .contact-line > span:first-child,
footer .contact-icon {
  width: 20px;

  flex: 0 0 20px;

  text-align: center;
  line-height: 1.4;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 12px;
}


/* =========================================================
   PAGE BANNER
   ========================================================= */

.page-banner {
  position: relative;
  overflow: hidden;
  padding: 64px 0 70px;
  color: var(--white);

  background:
    linear-gradient(
      160deg,
      var(--soil) 0%,
      #4a2e1c 65%,
      var(--soil) 100%
    );
}

.page-banner-furrows {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.14;
}

.page-banner-furrows svg {
  width: 100%;
  height: 100%;
}

.page-banner-furrows path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
}

.page-banner-content {
  position: relative;
  z-index: 2;
}


/* BREADCRUMB */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;

  color: #cbb99e;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
}

.breadcrumb a {
  transition: color 0.15s ease;
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb .current {
  color: var(--gold);
}


/* PAGE HEADING */

.page-eyebrow {
  color: var(--gold);
}

.page-eyebrow::before {
  background: var(--gold);
}

.page-banner h1 {
  max-width: 760px;
  margin: 16px 0;

  color: var(--white);
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
}

.page-banner h1 em {
  color: var(--gold);
  font-style: normal;
}

.page-banner p {
  max-width: 650px;

  color: #ede1ce;
  font-size: 1.06rem;
}


/* FURROW DIVIDER */

.furrow-divider path {
  fill: none;
  stroke: var(--line);
  stroke-width: 2;
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
    padding: 56px 20px;
    min-height: 320px;
  }

  .hero-copy {
    padding: 48px 32px;
    max-width: none;
  }

  .hero-stat-plate {
    position: static;
    margin-top: 18px;
    left: auto;
    display: inline-flex;
  }

  .hero-trust-strip {
    padding: 18px 32px;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-logos {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 36px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .main-nav {
    display: none;
  }

  .main-nav.nav-open {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 60;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;

    padding: 22px 32px;

    background: var(--white);
    border-bottom: 3px solid var(--red);
    box-shadow: 0 14px 30px -18px rgba(42, 26, 16, 0.45);
  }

  .header-phone {
    display: none;
  }

  .burger {
    display: flex;
  }

  .cards-grid,
  .why-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .partner-logos {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-strip .wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .wrap {
    padding: 0 20px;
  }

  .header-inner {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .header-actions .btn {
    display: none;
  }

  .hero-copy {
    padding: 42px 20px;
  }

  .hero-trust-strip {
    padding: 18px 20px;
    gap: 18px;
  }

  .partner-logos {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}


/* =========================================================
   IKONIC LTD — ABOUT PAGE

   This file contains styles that are specific to about.html.

   The shared website styles, including variables, header,
   buttons, footer, partner cards, grids and navigation,
   should remain inside style.css.
   ========================================================= */


/* ACTIVE NAVIGATION LINK */
/* =========================================================
   ABOUT INTRODUCTION
   ========================================================= */

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.about-copy h2 {
  margin: 14px 0 20px;
  font-size: clamp(1.8rem, 3vw, 2.35rem);
}

.about-copy p {
  margin-bottom: 16px;

  color: var(--muted);
  font-size: 1.02rem;
}

.about-copy p:last-of-type {
  margin-bottom: 0;
}


/* ABOUT STATISTICS */

.about-stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 32px;
}

.about-stat-row strong {
  display: block;

  color: var(--red);
  font-family: "Zilla Slab", serif;
  font-size: 1.8rem;
  line-height: 1;
}

.about-stat-row span {
  display: block;
  margin-top: 6px;

  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}


/* ABOUT VISUAL */

.about-visual {
  position: relative;
  min-height: 360px;
  overflow: hidden;

  display: grid;
  place-items: center;

  border-radius: var(--radius);
  background: var(--green);
  box-shadow: var(--shadow);
}

.about-visual::before {
  position: absolute;
  inset: 0;

  content: "";

  background:
    radial-gradient(
      circle at 30% 30%,
      rgba(255, 255, 255, 0.08),
      transparent 55%
    );
}

.about-visual .visual-ring {
  position: absolute;

  width: 270px;
  height: 270px;

  border: 1.5px dashed rgba(232, 163, 61, 0.48);
  border-radius: 50%;
}

.about-visual > svg {
  position: relative;
  z-index: 2;

  width: 205px;
  height: 205px;
}

.badge-plate {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;

  padding: 8px 12px;

  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;

  color: var(--white);
  background: rgba(255, 255, 255, 0.1);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}


/* =========================================================
   VISION AND MISSION
   ========================================================= */

.vm-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.vm-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;

  padding: 38px 34px;

  border-radius: var(--radius);
}

.vm-card.vision {
  color: var(--white);
  background: var(--soil);
}

.vm-card.mission {
  color: var(--ink);

  border: 1px solid var(--line);
  background: var(--white);
}


/* VISION AND MISSION ICONS */

.vm-icon {
  width: 50px;
  height: 50px;

  display: grid;
  place-items: center;

  margin-bottom: 22px;

  border-radius: 12px;
}

.vm-card.vision .vm-icon {
  color: var(--gold);
  background: rgba(232, 163, 61, 0.16);
}

.vm-card.mission .vm-icon {
  color: var(--red);
  background: var(--cream-2);
}

.vm-icon svg {
  width: 26px;
  height: 26px;
}


/* VISION AND MISSION CONTENT */

.vm-card h3 {
  margin-bottom: 14px;

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.vm-card.vision h3 {
  color: var(--gold);
}

.vm-card.mission h3 {
  color: var(--red);
}

.vm-card p {
  max-width: 430px;

  font-family: "Zilla Slab", serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
}

.vm-card.vision p {
  color: var(--white);
}


/* =========================================================
   PRODUCTION PROCESS
   ========================================================= */

.process-strip {
  position: relative;

  display: grid;
  grid-template-columns: repeat(5, 1fr);

  list-style: none;
}

.process-strip::before {
  position: absolute;
  top: 26px;
  right: 6%;
  left: 6%;
  z-index: 0;

  height: 2px;

  content: "";

  background-image:
    linear-gradient(
      to right,
      var(--line) 60%,
      transparent 0%
    );

  background-repeat: repeat-x;
  background-size: 14px 2px;
}

.process-step {
  position: relative;
  z-index: 1;

  padding: 0 12px;

  text-align: center;
}

.step-num {
  width: 52px;
  height: 52px;

  display: grid;
  place-items: center;

  margin: 0 auto 18px;

  border: 2px solid var(--red);
  border-radius: 50%;

  color: var(--red);
  background: var(--white);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.92rem;
  font-weight: 600;
}

.process-step h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.process-step p {
  color: var(--muted);
  font-size: 0.86rem;
}


/* =========================================================
   KAVES PARTNERSHIP
   ========================================================= */

.kaves-panel {
  padding: 38px;

  border: 1px solid var(--line);
  border-radius: var(--radius);

  background: var(--white);
  box-shadow: var(--shadow);
}

.kaves-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;

  margin-bottom: 16px;
}

.kaves-heading h3 {
  max-width: 680px;
  font-size: 1.4rem;
}

.kaves-badge {
  flex-shrink: 0;

  padding: 9px 13px;

  border-radius: 999px;

  color: var(--gold);
  background: var(--soil);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.kaves-label {
  display: block;
  margin-bottom: 12px;

  color: var(--red);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.kaves-summary {
  max-width: 850px;
  margin-bottom: 30px;

  color: var(--muted);
}

.kaves-block {
  margin-bottom: 28px;
}

.kaves-block:last-child {
  margin-bottom: 0;
}


/* CHIPS */

.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  padding: 8px 14px;

  border: 1px solid var(--line);
  border-radius: 999px;

  color: var(--ink);
  background: var(--cream);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
}

.chip-accent {
  color: var(--gold);
  border-color: var(--soil);
  background: var(--soil);
}


/* =========================================================
   ABOUT-PAGE SMALL ADJUSTMENTS
   ========================================================= */
/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 980px) {

  .about-intro-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    order: -1;
    min-height: 290px;
  }

  .vm-grid {
    grid-template-columns: 1fr;
  }

  .process-strip {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 38px;
  }

  .process-strip::before {
    display: none;
  }

}


@media (max-width: 720px) {

  .page-banner {
    padding: 52px 0 58px;
  }

  .about-stat-row {
    gap: 22px;
  }

  .process-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .kaves-panel {
    padding: 28px 22px;
  }

  .kaves-heading {
    flex-direction: column;
  }

}


@media (max-width: 520px) {

  .process-strip {
    grid-template-columns: 1fr;
  }

  .process-step {
    text-align: left;
  }

  .step-num {
    margin-right: 0;
    margin-left: 0;
  }

  .about-stat-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .vm-card {
    padding: 30px 24px;
  }

  .vm-card p {
    font-size: 1.25rem;
  }

}


/* =========================================================
   IKONIC LTD — PRODUCTS PAGE

   This file contains styles that are specific to products.html.

   Keep shared website styles such as the header, footer,
   buttons, typography, variables, and general sections
   inside style.css.
   ========================================================= */


/* =========================================================
   HEADER AND ACTIVE NAVIGATION
   ========================================================= */
/* =========================================================
   PAGE BANNER
   ========================================================= */
/* BREADCRUMB */
/* PAGE HEADING */
/* FURROW DIVIDER */
/* =========================================================
   CATEGORY QUICK NAVIGATION
   ========================================================= */

.category-nav {
  position: sticky;
  top: 73px;
  z-index: 35;

  padding: 15px 0;

  border-bottom: 1px solid var(--line);

  background:
    rgba(247, 241, 228, 0.96);

  backdrop-filter: blur(10px);
}

.category-nav-inner {
  display: flex;
  gap: 12px;

  overflow-x: auto;

  scrollbar-width: none;
}

.category-nav-inner::-webkit-scrollbar {
  display: none;
}

.category-pill {
  flex: 0 0 auto;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 9px 16px;

  border: 1.5px solid var(--line);
  border-radius: 999px;

  color: var(--ink);
  background: var(--white);

  font-size: 0.84rem;
  font-weight: 700;

  transition:
    color 0.15s ease,
    background-color 0.15s ease,
    border-color 0.15s ease,
    transform 0.15s ease;
}

.category-pill svg {
  width: 16px;
  height: 16px;

  flex: 0 0 16px;
}

.category-pill:hover {
  color: var(--red);
  border-color: var(--red);

  transform: translateY(-1px);
}

.category-pill.active {
  color: var(--white);
  border-color: var(--soil);
  background: var(--soil);
}

.category-pill.active svg {
  color: var(--gold);
}

.category-count {
  min-width: 24px;

  padding: 2px 7px;

  border-radius: 999px;

  color: var(--muted);
  background: var(--cream-2);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  text-align: center;
}

.category-pill.active .category-count {
  color: var(--soil);
  background: var(--gold);
}


/* =========================================================
   PRODUCT CATEGORY SECTIONS
   ========================================================= */

.product-category {
  scroll-margin-top: 150px;
}

.category-section-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 20px;

  max-width: 760px;

  margin-bottom: 42px;
}

.category-section-icon {
  width: 60px;
  height: 60px;

  display: grid;
  place-items: center;

  flex-shrink: 0;

  border-radius: 14px;

  color: var(--gold);
  background: var(--soil);
}

.category-section-icon svg {
  width: 30px;
  height: 30px;
}

.category-section-copy .eyebrow {
  margin-bottom: 8px;
}

.category-section-copy h2 {
  font-size: clamp(
    1.55rem,
    2.7vw,
    2.1rem
  );
}

.category-section-copy p {
  max-width: 650px;

  margin-top: 10px;

  color: var(--muted);
  font-size: 0.97rem;
}


/* =========================================================
   PRODUCT DETAIL GRID
   ========================================================= */

.product-detail-grid {
  display: grid;

  grid-template-columns:
    repeat(
      auto-fit,
      minmax(240px, 1fr)
    );

  gap: 22px;
}


/* PRODUCT CARD */

.product-detail-card {
  position: relative;
  overflow: hidden;

  display: flex;
  flex-direction: column;

  min-height: 100%;

  padding: 28px 24px 24px;

  border: 1px solid var(--line);
  border-radius: var(--radius);

  background: var(--white);

  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.product-detail-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;

  height: 4px;

  content: "";

  background: var(--red);

  transform: scaleX(0);
  transform-origin: left;

  transition: transform 0.2s ease;
}

.product-detail-card:hover {
  border-color:
    rgba(213, 22, 31, 0.55);

  box-shadow: var(--shadow);

  transform: translateY(-4px);
}

.product-detail-card:hover::before {
  transform: scaleX(1);
}


/* PRODUCT ICON */

.product-icon {
  width: 52px;
  height: 52px;

  display: grid;
  place-items: center;

  margin-bottom: 16px;

  border-radius: 50%;

  color: var(--red);
  background: var(--cream-2);
}

.product-icon svg {
  width: 26px;
  height: 26px;
}


/* PRODUCT CONTENT */

.product-label {
  display: block;

  margin-bottom: 8px;

  color: var(--red);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-detail-card h3 {
  margin-bottom: 10px;

  font-size: 1.18rem;
}

.product-detail-card > p {
  margin-bottom: 18px;

  color: var(--muted);
  font-size: 0.9rem;
}


/* PRODUCT HIGHLIGHTS */

.product-highlights {
  display: flex;
  flex-direction: column;
  gap: 8px;

  margin-bottom: 24px;
}

.product-highlights li {
  position: relative;

  padding-left: 17px;

  color: var(--ink);
  font-size: 0.84rem;
}

.product-highlights li::before {
  position: absolute;
  top: 0.55em;
  left: 0;

  width: 6px;
  height: 6px;

  border-radius: 50%;

  content: "";

  background: var(--gold);

  transform: translateY(-50%);
}


/* PRODUCT CARD FOOTER */

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;

  margin-top: auto;
  padding-top: 16px;

  border-top: 1px dashed var(--line);
}

.product-tag {
  color: var(--muted);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-enquire {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  color: var(--red);

  font-size: 0.84rem;
  font-weight: 700;

  transition:
    gap 0.15s ease,
    color 0.15s ease;
}

.product-enquire:hover {
  gap: 10px;
  color: var(--red-dark);
}


/* =========================================================
   CTA ADJUSTMENTS
   ========================================================= */
/* =========================================================
   FOOTER CONTACT LINKS
   ========================================================= */
/* =========================================================
   KEYBOARD FOCUS
   ========================================================= */

.category-pill:focus-visible,
.product-enquire:focus-visible {
  outline: 3px solid rgba(213, 22, 31, 0.28);
  outline-offset: 3px;
}


/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 980px) {

  .product-detail-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

}


/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 720px) {


.category-nav {
    top: 67px;
  }

  .category-nav-inner {
    padding-bottom: 2px;
  }

  .category-section-head {
    gap: 15px;
  }

  .category-section-icon {
    width: 52px;
    height: 52px;
  }

  .category-section-icon svg {
    width: 26px;
    height: 26px;
  }

  .product-category {
    scroll-margin-top: 140px;
  }

}


/* =========================================================
   RESPONSIVE — SMALL MOBILE
   ========================================================= */

@media (max-width: 620px) {

  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .category-section-head {
    grid-template-columns: 1fr;
  }

  .category-section-icon {
    margin-bottom: 2px;
  }

  .product-detail-card {
    padding: 26px 22px 22px;
  }

}


@media (max-width: 420px) {

  .product-card-footer {
    align-items: flex-start;
    flex-direction: column;
  }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .product-detail-card,
  .product-detail-card::before,
  .category-pill,
  .product-enquire {
    transition: none;
  }

}


/* =========================================================
   IKONIC LTD — CONTACT PAGE

   This file contains only styles specific to contact.html.

   Shared styles such as colours, typography, header, footer,
   buttons, section spacing and responsive navigation remain
   inside style.css.
   ========================================================= */


/* =========================================================
   ACTIVE NAVIGATION AND LOGO
   ========================================================= */
/* =========================================================
   PAGE BANNER
   ========================================================= */
/* BREADCRUMB */
/* BANNER HEADING */
/* FURROW DIVIDER */
/* =========================================================
   MAIN CONTACT SECTION
   ========================================================= */

.contact-main {
  scroll-margin-top: 90px;
}

.contact-section-heading {
  max-width: 690px;
  margin-bottom: 44px;
}

.contact-section-heading h2 {
  margin-top: 14px;

  font-size: clamp(
    1.8rem,
    3vw,
    2.4rem
  );
}

.contact-section-heading p {
  margin-top: 14px;

  color: var(--muted);
  font-size: 1.02rem;
}


/* =========================================================
   CONTACT LAYOUT
   ========================================================= */

.contact-layout {
  display: grid;

  grid-template-columns:
    minmax(0, 1.25fr)
    minmax(300px, 0.75fr);

  gap: 36px;

  align-items: start;
}


/* =========================================================
   FORM CARD
   ========================================================= */

.contact-form-card {
  padding: 38px;

  border: 1px solid var(--line);
  border-radius: var(--radius);

  background: var(--white);
  box-shadow: var(--shadow);
}

.form-card-heading {
  margin-bottom: 30px;
}

.form-card-label {
  display: block;

  margin-bottom: 8px;

  color: var(--red);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-card-heading h2 {
  margin-bottom: 9px;
  font-size: 1.55rem;
}

.form-card-heading p {
  max-width: 620px;

  color: var(--muted);
  font-size: 0.94rem;
}


/* =========================================================
   FORM FIELDS
   ========================================================= */

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-group {
  margin-bottom: 21px;
}

.form-group label {
  display: block;

  margin-bottom: 8px;

  color: var(--ink);

  font-size: 0.84rem;
  font-weight: 700;
}

.form-group label span {
  color: var(--red);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;

  padding: 13px 14px;

  border: 1px solid var(--line);
  border-radius: 9px;

  color: var(--ink);
  background: var(--cream);

  font-family: inherit;
  font-size: 0.92rem;

  outline: none;

  transition:
    border-color 0.15s ease,
    background-color 0.15s ease,
    box-shadow 0.15s ease;
}

.form-group textarea {
  min-height: 150px;

  resize: vertical;
  line-height: 1.6;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #978979;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  background: var(--white);

  box-shadow:
    0 0 0 3px
    rgba(213, 22, 31, 0.1);
}

.form-group select {
  cursor: pointer;
}


/* FIELD ERRORS */

.field-error {
  display: none;

  margin-top: 6px;

  color: var(--red);

  font-size: 0.77rem;
  font-weight: 600;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: var(--red);

  background:
    rgba(213, 22, 31, 0.025);
}

.form-group.error .field-error {
  display: block;
}


/* =========================================================
   SUBMIT BUTTON
   ========================================================= */

.submit-btn {
  width: 100%;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 15px 22px;

  border: 0;
  border-radius: 10px;

  color: var(--white);
  background: var(--red);

  font-family: inherit;
  font-size: 0.96rem;
  font-weight: 700;

  cursor: pointer;

  transition:
    background-color 0.15s ease,
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.submit-btn svg {
  width: 18px;
  height: 18px;
}

.submit-btn:hover {
  background: var(--red-dark);

  transform: translateY(-1px);

  box-shadow:
    0 10px 22px -10px
    rgba(213, 22, 31, 0.7);
}

.submit-btn:focus-visible {
  outline: 3px solid rgba(213, 22, 31, 0.3);
  outline-offset: 3px;
}

.form-note {
  margin-top: 12px;

  color: var(--muted);

  font-size: 0.78rem;
  line-height: 1.55;
  text-align: center;
}


/* FORM STATUS */

.form-status {
  margin-top: 18px;
  padding: 14px 16px;

  border: 1px solid var(--green);
  border-radius: 9px;

  color: var(--green);
  background: rgba(53, 81, 63, 0.08);

  font-size: 0.86rem;
  font-weight: 600;
}

.form-status:empty {
  display: none;
}

.form-status.error-status {
  color: var(--red);
  border-color: var(--red);

  background: rgba(213, 22, 31, 0.06);
}


/* =========================================================
   INFORMATION CARDS
   ========================================================= */

.info-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;

  padding: 22px 23px;

  border: 1px solid var(--line);
  border-radius: var(--radius);

  background: var(--white);

  transition:
    border-color 0.15s ease,
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.info-card:hover {
  border-color:
    rgba(213, 22, 31, 0.4);

  transform: translateY(-2px);

  box-shadow:
    0 10px 24px -18px
    rgba(42, 26, 16, 0.5);
}

.info-icon {
  width: 45px;
  height: 45px;

  display: grid;
  place-items: center;

  flex: 0 0 45px;

  border-radius: 10px;

  color: var(--gold);
  background: var(--soil);
}

.info-icon svg {
  width: 21px;
  height: 21px;
}

.info-label {
  display: block;

  margin-bottom: 4px;

  color: var(--red);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.info-card h3 {
  margin-bottom: 7px;
  font-size: 1.03rem;
}

.info-card p {
  margin: 0 0 3px;

  color: var(--muted);

  font-size: 0.87rem;
  line-height: 1.6;
}

.info-card a {
  color: var(--ink);
  font-weight: 700;

  transition: color 0.15s ease;
}

.info-card a:hover {
  color: var(--red);
}


/* =========================================================
   WHATSAPP CARD
   ========================================================= */

.whatsapp-card {
  color: var(--white);

  border-color: #25d366;
  background: #25d366;
}

.whatsapp-card:hover {
  border-color: #1eac52;

  box-shadow:
    0 12px 26px -16px
    rgba(37, 211, 102, 0.9);
}

.whatsapp-card .info-icon {
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
}

.whatsapp-card .info-label,
.whatsapp-card h3 {
  color: var(--white);
}

.whatsapp-card p {
  color: rgba(255, 255, 255, 0.87);
}

.whatsapp-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  margin-top: 7px;

  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.whatsapp-card a:hover {
  color: var(--white);
}


/* =========================================================
   BUSINESS HOURS
   ========================================================= */

.hours-content {
  width: 100%;
}

.hours-list {
  width: 100%;
  margin-top: 4px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 14px;

  padding: 5px 0;

  color: var(--muted);
  font-size: 0.8rem;
}

.hours-list strong {
  color: var(--ink);

  font-size: 0.8rem;
  font-weight: 700;
  text-align: right;
}


/* =========================================================
   MAP
   ========================================================= */

.map-card {
  overflow: hidden;

  border: 1px solid var(--line);
  border-radius: var(--radius);

  background: var(--white);
  box-shadow: var(--shadow);
}

.map-frame {
  width: 100%;
  height: 390px;

  display: block;

  border: 0;
}

.map-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;

  padding: 20px 24px;
}

.map-caption strong {
  display: block;
  margin-bottom: 4px;
}

.map-caption p {
  color: var(--muted);
  font-size: 0.87rem;
}

.directions-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  flex-shrink: 0;

  color: var(--red);

  font-size: 0.87rem;
  font-weight: 700;

  transition:
    gap 0.15s ease,
    color 0.15s ease;
}

.directions-link:hover {
  gap: 11px;
  color: var(--red-dark);
}


/* =========================================================
   FAQ
   ========================================================= */

.faq-list {
  max-width: 860px;

  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  position: relative;

  padding: 20px 48px 20px 0;

  color: var(--ink);

  font-family: "Zilla Slab", serif;
  font-size: 1.08rem;
  font-weight: 700;

  cursor: pointer;

  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 4px;

  content: "+";

  color: var(--red);

  font-family: "IBM Plex Mono", monospace;
  font-size: 1.35rem;
  font-weight: 500;

  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  max-width: 760px;

  padding: 0 48px 21px 0;

  color: var(--muted);
  font-size: 0.92rem;
}

.faq-item summary:focus-visible {
  outline: 3px solid rgba(213, 22, 31, 0.22);
  outline-offset: 3px;
}


/* =========================================================
   FOOTER CONTACT LINKS
   ========================================================= */
/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 980px) {

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .info-stack {
    display: grid;
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .whatsapp-card {
    grid-column: span 2;
  }

}


/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 720px) {


.contact-form-card {
    padding: 28px 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .info-stack {
    display: flex;
  }

  .whatsapp-card {
    grid-column: auto;
  }

  .map-frame {
    height: 320px;
  }

  .map-caption {
    align-items: flex-start;
    flex-direction: column;
  }

}


/* =========================================================
   RESPONSIVE — SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

  .contact-form-card {
    padding: 25px 19px;
  }

  .info-card {
    padding: 20px 18px;
  }

  .hours-list li {
    align-items: flex-start;
    flex-direction: column;
    gap: 1px;
  }

  .hours-list strong {
    text-align: left;
  }

  .map-frame {
    height: 280px;
  }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .submit-btn,
  .info-card,
  .directions-link,
  .form-group input,
  .form-group select,
  .form-group textarea {
    transition: none;
  }

}


/* =========================================================
   IKONIC LTD — BLOG PAGE

   This file contains styles specific to blog.html.

   Shared colours, typography, header, footer, buttons,
   section spacing and mobile navigation remain in style.css.
   ========================================================= */


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.blog-page .visually-hidden {
  position: absolute;

  width: 1px;
  height: 1px;

  padding: 0;
  margin: -1px;

  overflow: hidden;

  clip: rect(0, 0, 0, 0);

  white-space: nowrap;

  border: 0;
}


/* =========================================================
   ACTIVE NAVIGATION AND LOGO
   ========================================================= */
/* =========================================================
   PAGE BANNER
   ========================================================= */
/* BREADCRUMB */
/* PAGE HEADING */
/* FURROW DIVIDER */
/* =========================================================
   BLOG SECTION
   ========================================================= */

.blog-section {
  padding-top: 56px;
}


/* =========================================================
   FEATURED ARTICLE
   ========================================================= */

.featured-post {
  display: grid;
  grid-template-columns:
    minmax(300px, 0.9fr)
    minmax(0, 1.1fr);

  overflow: hidden;

  margin-bottom: 56px;

  border: 1px solid var(--line);
  border-radius: var(--radius);

  background: var(--white);
  box-shadow: var(--shadow);
}

.featured-media {
  position: relative;

  min-height: 340px;

  display: grid;
  place-items: center;

  padding: 42px;

  color: var(--gold);
  background: var(--soil);
}

.featured-media::before {
  position: absolute;
  inset: 0;

  content: "";

  background:
    radial-gradient(
      circle at 50% 40%,
      rgba(232, 163, 61, 0.12),
      transparent 60%
    );
}

.featured-media > svg {
  position: relative;
  z-index: 2;

  width: 155px;
  height: 155px;
}

.featured-media .post-category {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 3;
}

.featured-body {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 44px 42px;
}

.featured-body h2 {
  margin: 15px 0;

  font-size: clamp(
    1.5rem,
    2.5vw,
    2rem
  );
}

.featured-body > p {
  margin-bottom: 23px;

  color: var(--muted);
  font-size: 0.98rem;
}


/* =========================================================
   POST CATEGORIES
   ========================================================= */

.post-category {
  display: inline-flex;
  align-items: center;

  width: fit-content;

  padding: 5px 10px;

  border-radius: 999px;

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.category-farming {
  color: var(--ink);
  background: var(--gold);
}

.category-maintenance {
  color: var(--white);
  background: var(--soil);
}

.featured-media .category-maintenance {
  color: var(--soil);
  background: var(--gold);
}

.category-success {
  color: var(--white);
  background: var(--green);
}

.category-news {
  color: var(--white);
  background: var(--red);
}


/* =========================================================
   POST METADATA
   ========================================================= */

.post-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;

  color: var(--muted);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
}

.meta-dot {
  width: 3px;
  height: 3px;

  display: inline-block;

  border-radius: 50%;
  background: var(--muted);
}


/* =========================================================
   READ MORE LINKS
   ========================================================= */

.read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  width: fit-content;

  margin-top: auto;

  color: var(--red);

  font-size: 0.87rem;
  font-weight: 700;

  transition:
    gap 0.15s ease,
    color 0.15s ease;
}

.read-more-link:hover {
  gap: 10px;
  color: var(--red-dark);
}


/* =========================================================
   BLOG LAYOUT
   ========================================================= */

.blog-layout {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    300px;

  gap: 42px;

  align-items: start;
}


/* =========================================================
   FILTERS AND SEARCH
   ========================================================= */

.blog-toolbar {
  scroll-margin-top: 100px;

  display: flex;
  flex-direction: column;
  gap: 16px;

  margin-bottom: 16px;
}

.blog-filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-filter {
  padding: 8px 15px;

  border: 1.5px solid var(--line);
  border-radius: 999px;

  color: var(--ink);
  background: var(--white);

  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 700;

  cursor: pointer;

  transition:
    color 0.15s ease,
    background-color 0.15s ease,
    border-color 0.15s ease,
    transform 0.15s ease;
}

.blog-filter:hover {
  color: var(--red);
  border-color: var(--red);

  transform: translateY(-1px);
}

.blog-filter.active {
  color: var(--white);
  border-color: var(--red);
  background: var(--red);
}


/* SEARCH */

.blog-search {
  position: relative;

  max-width: 420px;
}

.blog-search svg {
  position: absolute;
  top: 50%;
  left: 14px;

  width: 17px;
  height: 17px;

  color: var(--muted);

  pointer-events: none;

  transform: translateY(-50%);
}

.blog-search input {
  width: 100%;

  padding: 12px 15px 12px 42px;

  border: 1px solid var(--line);
  border-radius: 10px;

  color: var(--ink);
  background: var(--white);

  font-family: inherit;
  font-size: 0.9rem;

  outline: none;

  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}

.blog-search input:focus {
  border-color: var(--red);

  box-shadow:
    0 0 0 3px
    rgba(213, 22, 31, 0.1);
}


/* RESULTS SUMMARY */

.results-summary {
  min-height: 20px;

  margin-bottom: 22px;

  color: var(--muted);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
}


/* =========================================================
   ARTICLE GRID
   ========================================================= */

.article-grid {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 22px;
}


/* RESET CONFLICTING HOMEPAGE BLOG STYLES */

.blog-page .blog-post-card span {
  color: inherit;

  font-family: inherit;
  font-size: inherit;
  letter-spacing: normal;
  text-transform: none;
}

.blog-page .blog-post-card .post-category {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}


/* ARTICLE CARD */

.blog-post-card {
  overflow: hidden;

  display: flex;
  flex-direction: column;

  min-height: 100%;

  border: 1px solid var(--line);
  border-radius: var(--radius);

  background: var(--white);

  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.blog-post-card[hidden] {
  display: none;
}

.blog-post-card:hover {
  border-color:
    rgba(213, 22, 31, 0.5);

  box-shadow: var(--shadow);

  transform: translateY(-4px);
}


/* ARTICLE MEDIA */

.blog-card-media {
  position: relative;

  min-height: 155px;

  display: grid;
  place-items: center;

  padding: 38px 20px;

  color: var(--red);
  background: var(--cream-2);
}

.blog-card-media::after {
  position: absolute;
  inset: 0;

  content: "";

  background:
    linear-gradient(
      135deg,
      transparent 50%,
      rgba(213, 22, 31, 0.04)
    );
}

.blog-card-media > svg {
  position: relative;
  z-index: 2;

  width: 66px;
  height: 66px;
}

.blog-card-media .post-category {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
}


/* ARTICLE BODY */

.blog-card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;

  padding: 22px 21px;
}

.blog-card-body h2 {
  margin: 12px 0 10px;

  font-size: 1.09rem;
  line-height: 1.35;
}

.blog-card-body > p {
  flex-grow: 1;

  margin-bottom: 18px;

  color: var(--muted);

  font-size: 0.87rem;
  line-height: 1.65;
}


/* =========================================================
   NO RESULTS
   ========================================================= */

.no-results {
  padding: 60px 20px;

  text-align: center;
}

.no-results[hidden] {
  display: none;
}

.no-results svg {
  width: 44px;
  height: 44px;

  margin: 0 auto 15px;

  color: var(--line);
}

.no-results h2 {
  margin-bottom: 7px;

  font-size: 1.2rem;
}

.no-results p {
  color: var(--muted);
  font-size: 0.9rem;
}


/* =========================================================
   PAGINATION
   ========================================================= */

.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;

  margin-top: 42px;
}

.blog-pagination[hidden] {
  display: none;
}

.pagination-button {
  min-width: 40px;
  height: 40px;

  display: inline-grid;
  place-items: center;

  padding: 0 13px;

  border: 1px solid var(--line);
  border-radius: 9px;

  color: var(--ink);
  background: var(--white);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  font-weight: 600;

  cursor: pointer;

  transition:
    color 0.15s ease,
    background-color 0.15s ease,
    border-color 0.15s ease;
}

.pagination-button:hover:not(:disabled) {
  color: var(--red);
  border-color: var(--red);
}

.pagination-button.active {
  color: var(--white);
  border-color: var(--red);
  background: var(--red);
}

.pagination-button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}


/* =========================================================
   SIDEBAR
   ========================================================= */

.blog-sidebar {
  position: sticky;
  top: 95px;

  display: flex;
  flex-direction: column;
  gap: 22px;
}

.sidebar-card {
  padding: 25px 23px;

  border: 1px solid var(--line);
  border-radius: var(--radius);

  background: var(--white);
}

.sidebar-card > h2 {
  margin-bottom: 18px;

  font-size: 1.08rem;
}


/* SIDEBAR CATEGORIES */

.sidebar-category-list {
  display: flex;
  flex-direction: column;
}

.sidebar-category {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  padding: 10px 0;

  border: 0;
  border-bottom: 1px solid var(--line);

  color: var(--ink);
  background: transparent;

  font-family: inherit;
  font-size: 0.86rem;
  text-align: left;

  cursor: pointer;

  transition: color 0.15s ease;
}

.sidebar-category:last-child {
  border-bottom: 0;
}

.sidebar-category:hover,
.sidebar-category.active {
  color: var(--red);
}

.sidebar-category strong {
  min-width: 28px;

  padding: 2px 8px;

  border-radius: 999px;

  color: var(--muted);
  background: var(--cream-2);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.66rem;
  text-align: center;
}

.sidebar-category.active strong {
  color: var(--white);
  background: var(--red);
}


/* RECENT POSTS */

.recent-post-list {
  display: flex;
  flex-direction: column;
}

.recent-post {
  display: flex;
  align-items: flex-start;
  gap: 12px;

  padding: 12px 0;

  border-bottom: 1px solid var(--line);
}

.recent-post:first-child {
  padding-top: 0;
}

.recent-post:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.recent-post-icon {
  width: 52px;
  height: 52px;

  display: grid;
  place-items: center;

  flex: 0 0 52px;

  border-radius: 9px;

  color: var(--red);
  background: var(--cream-2);
}

.recent-post-icon svg {
  width: 24px;
  height: 24px;
}

.recent-post strong {
  display: block;

  margin-bottom: 5px;

  color: var(--ink);

  font-family: "Zilla Slab", serif;
  font-size: 0.85rem;
  line-height: 1.35;

  transition: color 0.15s ease;
}

.recent-post:hover strong {
  color: var(--red);
}

.recent-post time {
  color: var(--muted);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.65rem;
}


/* =========================================================
   NEWSLETTER
   ========================================================= */

.newsletter-card {
  border-color: var(--soil);

  color: var(--white);
  background: var(--soil);
}

.newsletter-card > h2 {
  color: var(--white);
}

.newsletter-card > p {
  margin-bottom: 17px;

  color: #cbb99e;

  font-size: 0.85rem;
  line-height: 1.6;
}

.newsletter-card input {
  width: 100%;

  padding: 11px 13px;

  margin-bottom: 10px;

  border: 1px solid
    rgba(255, 255, 255, 0.2);

  border-radius: 9px;

  color: var(--white);

  background:
    rgba(255, 255, 255, 0.08);

  font-family: inherit;
  font-size: 0.86rem;

  outline: none;
}

.newsletter-card input::placeholder {
  color: #cbb99e;
}

.newsletter-card input:focus {
  border-color: var(--gold);

  box-shadow:
    0 0 0 3px
    rgba(232, 163, 61, 0.12);
}

.newsletter-card button {
  width: 100%;

  padding: 11px 14px;

  border: 0;
  border-radius: 9px;

  color: var(--ink);
  background: var(--gold);

  font-family: inherit;
  font-size: 0.86rem;
  font-weight: 700;

  cursor: pointer;

  transition:
    background-color 0.15s ease,
    transform 0.15s ease;
}

.newsletter-card button:hover {
  background: #f0b355;

  transform: translateY(-1px);
}

.newsletter-success {
  margin-top: 11px;

  color: var(--gold);

  font-size: 0.8rem;
  font-weight: 600;
}

.newsletter-success[hidden] {
  display: none;
}


/* =========================================================
   CTA
   ========================================================= */
/* =========================================================
   FOOTER CONTACT LINKS
   ========================================================= */
/* =========================================================
   FOCUS STYLES
   ========================================================= */

.blog-filter:focus-visible,
.sidebar-category:focus-visible,
.pagination-button:focus-visible,
.read-more-link:focus-visible,
.newsletter-card button:focus-visible,
.newsletter-card input:focus-visible {
  outline: 3px solid
    rgba(213, 22, 31, 0.25);

  outline-offset: 3px;
}


/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 980px) {

  .featured-post {
    grid-template-columns: 1fr;
  }

  .featured-media {
    min-height: 250px;
  }

  .blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;

    display: grid;
    grid-template-columns:
      repeat(3, minmax(0, 1fr));

    align-items: start;
  }

}


/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 760px) {


.featured-body {
    padding: 32px 25px;
  }

  .featured-media {
    min-height: 220px;
  }

  .featured-media > svg {
    width: 120px;
    height: 120px;
  }

  .article-grid {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    display: flex;
  }

  .blog-search {
    max-width: none;
  }

}


/* =========================================================
   RESPONSIVE — SMALL MOBILE
   ========================================================= */

@media (max-width: 520px) {

  .blog-filter-list {
    flex-wrap: nowrap;

    overflow-x: auto;

    padding-bottom: 4px;

    scrollbar-width: none;
  }

  .blog-filter-list::-webkit-scrollbar {
    display: none;
  }

  .blog-filter {
    flex: 0 0 auto;
  }

  .featured-body {
    padding: 28px 21px;
  }

  .featured-media {
    min-height: 200px;
  }

  .blog-card-body {
    padding: 21px 19px;
  }

  .pagination-button {
    min-width: 36px;
    height: 38px;

    padding: 0 10px;

    font-size: 0.7rem;
  }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .blog-post-card,
  .blog-filter,
  .read-more-link,
  .pagination-button,
  .newsletter-card button,
  .recent-post strong {
    transition: none;
  }

}


/* =========================================================
   IKONIC LTD — SIMPLE SINGLE BLOG POST
   ========================================================= */


/* ACTIVE NAVIGATION */
/* =========================================================
   POST HEADER
   ========================================================= */

.post-header {
  padding: 70px 0 76px;

  color: var(--white);

  background:
    linear-gradient(
      160deg,
      var(--soil) 0%,
      #4a2e1c 65%,
      var(--soil) 100%
    );
}

.post-header-inner {
  max-width: 900px;
}

.back-to-blog {
  display: inline-flex;

  margin-bottom: 28px;

  color: #cbb99e;

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.74rem;

  transition: color 0.15s ease;
}

.back-to-blog:hover {
  color: var(--white);
}

.single-post-page .post-category {
  display: block;

  width: fit-content;

  padding: 6px 12px;
  margin-bottom: 18px;

  border-radius: 999px;

  color: var(--soil);
  background: var(--gold);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.post-header h1 {
  max-width: 880px;

  margin-bottom: 24px;

  color: var(--white);

  font-size:
    clamp(
      2.2rem,
      5vw,
      4rem
    );

  line-height: 1.08;
}

.single-post-page .post-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;

  color: #cbb99e;

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
}

.single-post-page .meta-dot {
  width: 4px;
  height: 4px;

  border-radius: 50%;

  background: var(--gold);
}


/* =========================================================
   FEATURED IMAGE
   ========================================================= */

.featured-image-section {
  padding-top: 56px;
}

.featured-image {
  max-width: 1000px;

  overflow: hidden;

  margin: 0 auto;

  border-radius: var(--radius);

  background: var(--cream-2);
  box-shadow: var(--shadow);
}

.featured-image img {
  width: 100%;
  height: 520px;

  object-fit: cover;
}


/* =========================================================
   POST BODY
   ========================================================= */

.post-body-section {
  padding: 68px 0 92px;
}

.post-body {
  max-width: 780px;
  margin: 0 auto;
}

.post-body p {
  margin-bottom: 23px;

  color: #4f4438;

  font-size: 1.02rem;
  line-height: 1.85;
}

.post-body .post-lead {
  color: var(--ink);

  font-family: "Zilla Slab", serif;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.65;
}

.post-body h2 {
  margin: 55px 0 19px;

  font-size:
    clamp(
      1.55rem,
      3vw,
      2.15rem
    );

  line-height: 1.25;
}

.post-body h3 {
  margin: 31px 0 13px;

  font-size: 1.25rem;
}

.post-body ul {
  display: flex;
  flex-direction: column;
  gap: 11px;

  margin: 18px 0 30px;
}

.post-body li {
  position: relative;

  padding-left: 25px;

  color: #4f4438;

  font-size: 0.98rem;
  line-height: 1.7;
}

.post-body li::before {
  position: absolute;
  top: 0.7em;
  left: 0;

  width: 8px;
  height: 8px;

  border-radius: 50%;

  content: "";

  background: var(--gold);

  transform: translateY(-50%);
}


/* BLOCKQUOTE */

.post-body blockquote {
  margin: 33px 0;
  padding: 27px 30px;

  border-left: 4px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;

  color: var(--ink);
  background: var(--cream-2);

  font-family: "Zilla Slab", serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.65;
}


/* ARTICLE NOTES */

.post-note,
.post-warning {
  margin: 30px 0;
  padding: 23px 25px;

  border-radius: var(--radius);
}

.post-note {
  border: 1px solid
    rgba(232, 163, 61, 0.55);

  background:
    rgba(232, 163, 61, 0.1);
}

.post-warning {
  border: 1px solid
    rgba(213, 22, 31, 0.35);

  background:
    rgba(213, 22, 31, 0.06);
}

.post-note strong,
.post-warning strong {
  display: block;

  margin-bottom: 7px;
}

.post-warning strong {
  color: var(--red);
}

.post-note p,
.post-warning p {
  margin: 0;

  font-size: 0.91rem;
  line-height: 1.7;
}


/* =========================================================
   SERVICE CHECKLIST
   ========================================================= */

.service-checklist {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 12px;

  margin: 29px 0 38px;
}

.service-checklist div {
  display: flex;
  align-items: center;
  gap: 11px;

  padding: 14px 15px;

  border: 1px solid var(--line);
  border-radius: 9px;

  color: var(--ink);
  background: var(--white);

  font-size: 0.86rem;
  font-weight: 600;
}

.service-checklist span {
  width: 24px;
  height: 24px;

  display: grid;
  place-items: center;

  flex: 0 0 24px;

  border-radius: 50%;

  color: var(--white);
  background: var(--green);

  font-size: 0.73rem;
}


/* =========================================================
   POST CONTACT BOX
   ========================================================= */

.post-contact-box {
  margin-top: 55px;
  padding: 38px;

  border-radius: var(--radius);

  color: var(--white);
  background: var(--green);
}

.post-contact-box h2 {
  margin: 0 0 11px;

  color: var(--white);

  font-size: 1.65rem;
}

.post-contact-box p {
  max-width: 600px;

  margin-bottom: 22px;

  color: #dce5dd;

  font-size: 0.94rem;
}


/* =========================================================
   RELATED POSTS
   ========================================================= */

.related-posts {
  border-top: 1px solid var(--line);
}

.related-post-grid {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 22px;
}

.related-post-card {
  overflow: hidden;

  display: flex;
  flex-direction: column;

  border: 1px solid var(--line);
  border-radius: var(--radius);

  background: var(--white);

  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.related-post-card:hover {
  border-color: var(--red);

  box-shadow: var(--shadow);

  transform: translateY(-4px);
}

.related-post-image {
  overflow: hidden;

  background: var(--cream);
}

.related-post-image img {
  width: 100%;
  height: 200px;

  object-fit: cover;

  transition: transform 0.25s ease;
}

.related-post-card:hover .related-post-image img {
  transform: scale(1.04);
}

.related-post-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;

  padding: 23px 21px;
}

.related-post-content > span {
  margin-bottom: 10px;

  color: var(--red);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.related-post-content h3 {
  margin-bottom: 10px;

  font-size: 1.12rem;
  line-height: 1.4;
}

.related-post-content h3 a {
  transition: color 0.15s ease;
}

.related-post-content h3 a:hover {
  color: var(--red);
}

.related-post-content p {
  flex-grow: 1;

  margin-bottom: 17px;

  color: var(--muted);

  font-size: 0.87rem;
  line-height: 1.65;
}

.related-post-link {
  width: fit-content;

  color: var(--red);

  font-size: 0.83rem;
  font-weight: 700;
}


/* =========================================================
   FOOTER CONTACT LINKS
   ========================================================= */
/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

  .featured-image img {
    height: 420px;
  }

  .related-post-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

}


@media (max-width: 720px) {

  .post-header {
    padding: 52px 0 58px;
  }

  .featured-image-section {
    padding-top: 35px;
  }

  .featured-image img {
    height: 340px;
  }

  .post-body-section {
    padding-top: 52px;
  }

  .service-checklist {
    grid-template-columns: 1fr;
  }

  .related-post-grid {
    grid-template-columns: 1fr;
  }

}


@media (max-width: 480px) {

  .post-header h1 {
    font-size: 2.15rem;
  }

  .featured-image img {
    height: 260px;
  }

  .post-body .post-lead {
    font-size: 1.2rem;
  }

  .post-contact-box {
    padding: 29px 23px;
  }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .related-post-card,
  .related-post-image img {
    transition: none;
  }

}


/* =========================================================
   BACKGROUND VIDEO FEATURE SECTION
   ========================================================= */

.video-feature-section {
  position: relative;

  min-height: 620px;
  overflow: hidden;

  display: flex;
  align-items: center;

  padding: 100px 0;

  background: var(--soil);
}


/* BACKGROUND VIDEO */

.video-feature-background {
  position: absolute;
  inset: 0;
  z-index: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}


/* DARK OVERLAY */

.video-feature-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    linear-gradient(
      90deg,
      rgba(24, 14, 9, 0.9) 0%,
      rgba(31, 18, 11, 0.78) 45%,
      rgba(31, 18, 11, 0.6) 70%,
      rgba(24, 14, 9, 0.7) 100%
    );
}


/* OPTIONAL PATTERN */

.video-feature-pattern {
  position: absolute;
  inset: 0;
  z-index: 2;

  opacity: 0.12;
  pointer-events: none;
}

.video-feature-pattern svg {
  width: 100%;
  height: 100%;
}

.video-feature-pattern path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
}


/* CONTENT */

.video-feature-content {
  position: relative;
  z-index: 3;

  width: 100%;
}

.video-feature-content > * {
  max-width: 720px;
}


/* EYEBROW */

.video-feature-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  margin-bottom: 18px;

  color: var(--gold);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.video-feature-eyebrow::before {
  width: 20px;
  height: 2px;

  content: "";

  background: var(--gold);
}


/* HEADING */

.video-feature-content h2 {
  margin-bottom: 22px;

  color: var(--white);

  font-size:
    clamp(
      2.2rem,
      4.8vw,
      4rem
    );

  line-height: 1.08;
}

.video-feature-content h2 em {
  display: block;

  color: var(--gold);
  font-style: normal;
}


/* PARAGRAPH */

.video-feature-content p {
  margin-bottom: 32px;

  color: rgba(255, 255, 255, 0.86);

  font-size: 1.08rem;
  line-height: 1.75;
}


/* BUTTONS */

.video-feature-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.video-outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 13px 25px;

  border: 1.5px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;

  color: var(--white);
  background: transparent;

  font-size: 0.94rem;
  font-weight: 600;

  transition:
    color 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease;
}

.video-outline-button:hover {
  color: var(--soil);
  border-color: var(--white);
  background: var(--white);

  transform: translateY(-2px);
}


/* OPTIONAL BOTTOM ACCENT */

.video-feature-section::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;

  height: 4px;

  content: "";

  background: var(--red);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  .video-feature-section {
    min-height: 560px;

    padding: 82px 0;
  }

  .video-feature-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(24, 14, 9, 0.9) 0%,
        rgba(24, 14, 9, 0.76) 100%
      );
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 720px) {

  .video-feature-section {
    min-height: 540px;

    padding: 72px 0;
  }

  .video-feature-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(24, 14, 9, 0.72) 0%,
        rgba(24, 14, 9, 0.9) 100%
      );
  }

  .video-feature-content h2 em {
    display: inline;
  }

  .video-feature-content p {
    font-size: 1rem;
  }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

  .video-feature-section {
    min-height: 520px;

    padding: 62px 0;
  }

  .video-feature-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .video-feature-actions .btn,
  .video-outline-button {
    width: 100%;

    justify-content: center;
  }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .video-feature-background {
    display: none;
  }

  .video-feature-section {
    background:
      linear-gradient(
        rgba(24, 14, 9, 0.82),
        rgba(24, 14, 9, 0.82)
      ),
      url("../images/farm.jpg")
      center / cover no-repeat;
  }

  .video-outline-button {
    transition: none;
  }

}




/* =========================================================
   HOMEPAGE PRODUCT IMAGE GRID
   ========================================================= */

.products-grid {
  display: grid;
  grid-template-columns:
    repeat(
      auto-fit,
      minmax(210px, 1fr)
    );
  gap: 20px;
}

.product-chip {
  position: relative;
  overflow: hidden;

  padding: 0;

  border: 1px solid var(--line);
  border-radius: var(--radius);

  background: var(--white);

  text-align: left;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.product-chip:hover {
  border-color: rgba(213, 22, 31, 0.55);

  box-shadow: var(--shadow);

  transform: translateY(-5px);
}


/* PRODUCT IMAGE */

.product-chip-image {
  position: relative;
  overflow: hidden;

  width: 100%;
  aspect-ratio: 4 / 3;

  background: var(--cream-2);
}

.product-chip-image::after {
  position: absolute;
  inset: 0;

  content: "";

  pointer-events: none;

  background:
    linear-gradient(
      180deg,
      transparent 55%,
      rgba(42, 26, 16, 0.15) 100%
    );
}

.product-chip-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  transition: transform 0.35s ease;
}

.product-chip:hover .product-chip-image img {
  transform: scale(1.06);
}


/* PRODUCT NAME */

.product-chip-content {
  position: relative;

  padding: 18px 18px 19px;
}

.product-chip-content::before {
  position: absolute;
  top: 0;
  left: 18px;

  width: 32px;
  height: 3px;

  content: "";

  background: var(--red);

  transform: translateY(-50%);
}

.product-chip-content p {
  margin: 0;

  color: var(--ink);

  font-family: "Zilla Slab", serif;
  font-size: 1.03rem;
  font-weight: 700;
  line-height: 1.3;
}


/* =========================================================
   HOMEPAGE PRODUCT CATEGORY CARDS
   ========================================================= */

.cards-grid {
  display: grid;
  grid-template-columns:
    repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.cat-card {
  position: relative;
  overflow: hidden;

  display: flex;
  flex-direction: column;

  padding: 0;

  border: 1px solid var(--line);
  border-radius: var(--radius);

  background: var(--white);

  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease,
    border-color 0.2s ease;
}

.cat-card::before {
  display: none;
}

.cat-card:hover {
  border-color: rgba(213, 22, 31, 0.5);

  box-shadow: var(--shadow);

  transform: translateY(-5px);
}


/* CATEGORY IMAGE */

.cat-card-image {
  position: relative;
  overflow: hidden;

  display: block;

  width: 100%;
  aspect-ratio: 16 / 10;

  background: var(--cream-2);
}

.cat-card-image::after {
  position: absolute;
  inset: 0;

  content: "";

  pointer-events: none;

  background:
    linear-gradient(
      180deg,
      rgba(42, 26, 16, 0.02) 25%,
      rgba(42, 26, 16, 0.52) 100%
    );
}

.cat-card-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  transition: transform 0.4s ease;
}

.cat-card:hover .cat-card-image img {
  transform: scale(1.055);
}


/* IMAGE LABEL */

.cat-card-image-label {
  position: absolute;
  right: 14px;
  bottom: 13px;
  z-index: 2;

  padding: 6px 10px;

  border: 1px solid
    rgba(255, 255, 255, 0.3);
  border-radius: 999px;

  color: var(--white);
  background: rgba(42, 26, 16, 0.72);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;

  backdrop-filter: blur(5px);
}


/* CATEGORY CONTENT */

.cat-card-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;

  padding: 25px 24px 24px;
}

.cat-card-content h3 {
  margin-bottom: 7px;

  font-size: 1.22rem;
  line-height: 1.3;
}

.cat-count {
  margin-bottom: 17px;

  color: var(--muted);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.65rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}


/* CATEGORY LIST */

.cat-card ul {
  flex-grow: 1;

  margin-bottom: 22px;
}

.cat-card li {
  display: flex;
  align-items: center;
  gap: 9px;

  padding: 8px 0;

  border-bottom: 1px dashed var(--line);

  color: var(--ink);

  font-size: 0.88rem;
}

.cat-card li:last-child {
  border-bottom: 0;
}

.cat-card li::before {
  width: 6px;
  height: 6px;

  flex: 0 0 6px;

  border-radius: 50%;

  content: "";

  background: var(--red);
}


/* CATEGORY LINK */

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  width: fit-content;

  color: var(--red);

  font-size: 0.87rem;
  font-weight: 700;

  transition:
    gap 0.15s ease,
    color 0.15s ease;
}

.read-more:hover {
  gap: 10px;

  color: var(--red-dark);
}


/* =========================================================
   RESPONSIVE PRODUCT IMAGES
   ========================================================= */

@media (max-width: 1080px) {

  .cards-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

}


@media (max-width: 720px) {

  .products-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

}


@media (max-width: 560px) {

  .products-grid,
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .product-chip-image {
    aspect-ratio: 16 / 10;
  }

}

/* =========================================================
   WORDPRESS CLASSIC THEME COMPATIBILITY
   Keeps generated WordPress markup visually identical to the
   original static HTML design.
   ========================================================= */

.site-header ul,
.site-footer ul,
footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header .primary-navigation {
  display: flex;
  align-items: center;
}

.site-header .main-nav {
  margin: 0;
  padding: 0;
}

.site-header .main-nav > li {
  margin: 0;
  padding: 0;
}

.site-header .site-logo,
.site-header .custom-logo {
  display: block;
  width: 110px;
  max-width: 110px;
  height: auto;
  max-height: 58px;
  object-fit: contain;
}

.site-header .custom-logo-link {
  display: flex;
  align-items: center;
}

.site-header .current-menu-item > a,
.site-header .current_page_item > a,
.site-header .current-menu-ancestor > a {
  color: var(--red);
}

.site-header .current-menu-item > a::after,
.site-header .current_page_item > a::after,
.site-header .current-menu-ancestor > a::after {
  width: 100%;
}

.admin-bar .site-header {
  top: 32px;
}

main,
#main-content {
  display: block;
  width: 100%;
}

.footer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-logo img {
  display: block;
  width: 100px;
  height: auto;
}

@media screen and (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

@media (max-width: 720px) {
  .site-header .primary-navigation {
    position: static;
  }

  .site-header .main-nav {
    display: none;
  }

  .site-header .main-nav.nav-open {
    display: flex;
  }

  .site-header .main-nav li,
  .site-header .main-nav a {
    width: 100%;
  }
}




.about-visual-image {
  width: 200px;
  max-width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
}



/* =========================================================
   ABOUT PAGE IMAGE
   ========================================================= */

.about-visual {
  position: relative;
  width: 100%;
  min-height: 360px;
  overflow: hidden;

  display: block;

  border-radius: var(--radius);
  background: transparent;
  box-shadow: var(--shadow);
}

/* Remove the old green decorative overlay */

.about-visual::before {
  display: none;
  content: none;
}

/* Remove the old dotted circle */

.about-visual .visual-ring {
  display: none;
}

/* Full-size image */

.about-visual-image {
  display: block;

  width: 100%;
  height: 100%;
  min-height: 360px;

  object-fit: cover;
  object-position: center;

  border-radius: inherit;
}



@media (max-width: 980px) {

  .about-visual,
  .about-visual-image {
    min-height: 320px;
  }

}

@media (max-width: 520px) {

  .about-visual,
  .about-visual-image {
    min-height: 260px;
  }

}





/* =========================================================
   PRODUCT CARD IMAGES
   ========================================================= */

.product-detail-card {
  padding: 0;
}

.product-card-image {
  position: relative;
  overflow: hidden;

  width: 100%;
  aspect-ratio: 4 / 3;

  background: var(--cream-2);
}

.product-card-image::after {
  position: absolute;
  inset: 0;

  content: "";

  pointer-events: none;

  background:
    linear-gradient(
      180deg,
      transparent 58%,
      rgba(42, 26, 16, 0.16) 100%
    );
}

.product-card-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  transition: transform 0.35s ease;
}

.product-detail-card:hover .product-card-image img {
  transform: scale(1.055);
}

.product-card-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;

  padding: 25px 24px 24px;
}

.product-card-content > p {
  margin-bottom: 18px;

  color: var(--muted);
  font-size: 0.9rem;
}

.product-card-content .product-highlights {
  margin-bottom: 24px;
}

.product-card-content .product-card-footer {
  margin-top: auto;
}


/* Remove the old product icons */

.product-detail-card .product-icon {
  display: none;
}


/* Responsive product images */

@media (max-width: 620px) {

  .product-card-image {
    aspect-ratio: 16 / 10;
  }

  .product-card-content {
    padding: 23px 21px 22px;
  }

}



















/* =========================================================
   WORDPRESS BLOG IMAGES
   ========================================================= */

.featured-media.has-image,
.blog-card-media.has-image {
  padding: 0;
}

.featured-media.has-image {
  display: block;
  min-height: 340px;
}

.featured-post-image {
  display: block;

  width: 100%;
  height: 100%;
  min-height: 340px;

  object-fit: cover;
  object-position: center;
}

.featured-media.has-image::after,
.blog-card-media.has-image::after {
  position: absolute;
  inset: 0;
  z-index: 1;

  content: "";

  pointer-events: none;

  background:
    linear-gradient(
      180deg,
      rgba(42, 26, 16, 0.05) 35%,
      rgba(42, 26, 16, 0.4) 100%
    );
}

.featured-media .post-category,
.blog-card-media .post-category {
  z-index: 3;
}

.blog-card-media.has-image {
  display: block;

  min-height: 190px;
  padding: 0;
}

.blog-post-image {
  display: block;

  width: 100%;
  height: 190px;

  object-fit: cover;
  object-position: center;

  transition: transform 0.3s ease;
}

.blog-post-card:hover .blog-post-image {
  transform: scale(1.045);
}

.blog-card-body h2 a {
  transition: color 0.15s ease;
}

.blog-card-body h2 a:hover,
.featured-body h2 a:hover {
  color: var(--red);
}


/* BLOG SIDEBAR ACTION */

.newsletter-action {
  width: 100%;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 11px 14px;

  border-radius: 9px;

  color: var(--ink);
  background: var(--gold);

  font-size: 0.86rem;
  font-weight: 700;

  transition:
    background-color 0.15s ease,
    transform 0.15s ease;
}

.newsletter-action:hover {
  color: var(--ink);
  background: #f0b355;

  transform: translateY(-1px);
}


/* WORDPRESS PAGINATION */

.blog-pagination .pagination-button {
  text-decoration: none;
}

.blog-pagination .pagination-button.active {
  color: var(--white);
  border-color: var(--red);
  background: var(--red);

  pointer-events: none;
}


/* BLOG EMPTY STATE BUTTON */

.no-results .btn {
  margin-top: 22px;
}


@media (max-width: 760px) {

  .featured-media.has-image,
  .featured-post-image {
    min-height: 240px;
  }

}


@media (max-width: 520px) {

  .featured-media.has-image,
  .featured-post-image {
    min-height: 210px;
  }

  .blog-card-media.has-image,
  .blog-post-image {
    height: 210px;
  }

}










/* =========================================================
   SINGLE POST WORDPRESS ADDITIONS
   ========================================================= */

.featured-image-caption {
  padding: 12px 16px;

  color: var(--muted);
  background: var(--white);

  font-size: 0.78rem;
  line-height: 1.5;
  text-align: center;
}


/* WORDPRESS CONTENT */

.post-body > *:first-child {
  margin-top: 0;
}

.post-body img {
  height: auto;

  border-radius: 10px;
}

.post-body figure {
  margin: 34px 0;
}

.post-body figcaption {
  margin-top: 9px;

  color: var(--muted);

  font-size: 0.78rem;
  line-height: 1.5;
  text-align: center;
}

.post-body ol {
  display: flex;
  flex-direction: column;
  gap: 11px;

  margin: 18px 0 30px;

  counter-reset: post-list;
}

.post-body ol li {
  position: relative;

  padding-left: 34px;

  color: #4f4438;

  font-size: 0.98rem;
  line-height: 1.7;

  counter-increment: post-list;
}

.post-body ol li::before {
  position: absolute;
  top: 0;
  left: 0;

  width: 24px;
  height: 24px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  content: counter(post-list);

  color: var(--white);
  background: var(--red);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  font-weight: 600;
}

.post-body a:not(.btn) {
  color: var(--red);

  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.post-body a:not(.btn):hover {
  color: var(--red-dark);
}

.post-body strong {
  color: var(--ink);
}

.post-body hr {
  height: 1px;

  margin: 42px 0;

  border: 0;

  background: var(--line);
}

.post-body table {
  width: 100%;

  margin: 30px 0;

  border-collapse: collapse;

  background: var(--white);
}

.post-body th,
.post-body td {
  padding: 13px 15px;

  border: 1px solid var(--line);

  color: var(--ink);

  font-size: 0.88rem;
  text-align: left;
}

.post-body th {
  color: var(--white);
  background: var(--soil);
}


/* POST PAGE LINKS */

.post-page-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;

  margin: 34px 0;
}

.post-page-links > span {
  color: var(--muted);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.post-page-links a,
.post-page-links > .post-page-numbers {
  min-width: 36px;
  height: 36px;

  display: inline-grid;
  place-items: center;

  padding: 0 11px;

  border: 1px solid var(--line);
  border-radius: 8px;

  color: var(--ink);
  background: var(--white);

  text-decoration: none;
}


/* SINGLE POST FOOTER */

.single-post-footer {
  display: flex;
  flex-direction: column;
  gap: 22px;

  margin-top: 48px;
  padding-top: 30px;

  border-top: 1px solid var(--line);
}

.single-post-footer-label {
  display: block;

  margin-bottom: 10px;

  color: var(--muted);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.single-post-category-list,
.single-post-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.single-post-category,
.single-post-tag {
  display: inline-flex;
  align-items: center;

  padding: 7px 12px;

  border: 1px solid var(--line);
  border-radius: 999px;

  color: var(--ink);
  background: var(--white);

  font-size: 0.76rem;
  font-weight: 700;

  text-decoration: none !important;

  transition:
    color 0.15s ease,
    border-color 0.15s ease,
    background-color 0.15s ease;
}

.single-post-category:hover,
.single-post-tag:hover {
  color: var(--white) !important;
  border-color: var(--red);
  background: var(--red);
}


/* RELATED POST FALLBACK IMAGES */

.related-post-image {
  display: block;
}

.related-post-image img {
  display: block;

  width: 100%;
  height: 200px;

  object-fit: cover;
  object-position: center;
}


/* BACK LINK */

.back-to-blog {
  align-items: center;
  gap: 7px;
}


@media (max-width: 720px) {

  .post-body table {
    display: block;

    overflow-x: auto;
  }

  .single-post-footer {
    margin-top: 40px;
  }

}
















/* =========================================================
   MOBILE NAVIGATION SPACING
   ========================================================= */

@media (max-width: 820px) {

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;

    width: auto;

    padding: 14px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;

    background: var(--soil-dark);
    box-shadow: 0 18px 38px rgba(42, 26, 16, 0.28);
  }

  .main-nav li {
    width: 100%;
  }

  .main-nav a,
  .main-nav .main-nav-link {
    width: 100%;

    display: flex;
    align-items: center;

    padding: 12px 14px;

    border-radius: 8px;
  }

  .main-nav a:hover,
  .main-nav a:focus,
  .main-nav .current-menu-item > a,
  .main-nav .current_page_item > a {
    background: rgba(255, 255, 255, 0.08);
  }

}











.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 9px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.footer-menu li {
  margin: 0;
  padding: 0;
}

.footer-menu a {
  color: rgba(255, 255, 255, 0.72);

  font-size: 0.88rem;
  line-height: 1.5;

  transition: color 0.15s ease;
}

.footer-menu a:hover,
.footer-menu a:focus {
  color: var(--gold);
}

.footer-logo {
  display: inline-block;

  color: var(--white);

  font-family: "Zilla Slab", serif;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.footer-logo:hover {
  color: var(--white);
}

.footer-logo .hi {
  color: var(--red);
}

.footer-contact .contact-line {
  align-items: flex-start;
}

.footer-contact .contact-icon {
  width: 18px;
  height: 18px;

  display: inline-flex;
  flex: 0 0 18px;

  margin-top: 2px;

  color: var(--gold);
}

.footer-contact .contact-icon svg {
  width: 100%;
  height: 100%;
}



