:root {
  --ink: #10211f;
  --muted-ink: #61716e;
  --paper: #eef3f0;
  --card: #ffffff;
  --deep: #082622;
  --deep-soft: #103832;
  --line: rgba(16, 33, 31, 0.12);
  --accent: #0f9d8a;
  --accent-dark: #087466;
  --copper: #d98b45;
  --copper-soft: #f3c895;
  --mint: #a8ddd3;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(15, 157, 138, 0.14), transparent 34rem),
    linear-gradient(180deg, #f4f7f4, var(--paper));
  color: var(--ink);
}

body::selection {
  background: var(--accent);
  color: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(15, 157, 138, 0.38);
  outline-offset: 4px;
}

#root,
.site-page {
  min-height: 100vh;
}

.site-page {
  overflow: hidden;
}

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  display: flex;
  width: min(1180px, calc(100% - 32px));
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 12px 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(8, 38, 34, 0.84);
  box-shadow: 0 20px 54px rgba(8, 38, 34, 0.2);
  backdrop-filter: blur(22px);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
  color: #fff;
}

.brand-text {
  display: grid;
  line-height: 1;
  text-transform: uppercase;
}

.brand strong {
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.brand small {
  margin-top: 4px;
  color: var(--mint);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.27em;
}

.atom-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 58%, rgba(243, 200, 149, 0.18), transparent 46%),
    linear-gradient(145deg, #0c3832, #051b18);
  box-shadow: 0 0 28px rgba(217, 139, 69, 0.18);
}

.atom-mark img {
  width: 29px;
  height: auto;
  filter: drop-shadow(0 0 8px rgba(217, 139, 69, 0.32));
}

.brand-divider {
  width: 1px;
  height: 34px;
  margin-inline: 3px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.22), transparent);
}

.zyclax-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 13px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.zyclax-pill small {
  color: #55606a;
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.desktop-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  font-weight: 800;
  transition: 180ms ease;
}

.desktop-nav a:hover {
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
}

.nav-cta,
.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  font-weight: 900;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.nav-cta {
  min-width: max-content;
  padding: 11px 17px;
  background: var(--copper);
  color: #10211f;
  font-size: 0.86rem;
  box-shadow: 0 12px 28px rgba(217, 139, 69, 0.24);
}

.nav-cta:hover,
.button-primary:hover,
.button-secondary:hover {
  transform: translateY(-2px);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
}

.mobile-nav {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  left: 0;
  display: grid;
  gap: 6px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(8, 38, 34, 0.96);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: 180ms ease;
}

.mobile-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-nav a {
  padding: 14px 16px;
  border-radius: 14px;
  color: #fff;
  font-weight: 900;
}

.hero {
  position: relative;
  display: grid;
  min-height: 690px;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: 46px;
  margin-top: 104px;
  padding: 62px;
  overflow: hidden;
  border-radius: 42px;
  background:
    radial-gradient(circle at 86% 8%, rgba(217, 139, 69, 0.16), transparent 22rem),
    linear-gradient(135deg, #082622 0%, #0c332d 54%, #071c19 100%);
  box-shadow: 0 32px 90px rgba(8, 38, 34, 0.24);
  color: #fff;
}

.hero::before {
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  content: "";
  pointer-events: none;
}

.hero::after {
  position: absolute;
  top: -170px;
  left: -150px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 157, 138, 0.2), transparent 68%);
  content: "";
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--copper-soft);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.leadership-copy h2,
.contact-copy h2 {
  margin: 0;
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 660px;
  margin-top: 22px;
  font-size: clamp(3rem, 5.45vw, 4.7rem);
}

.hero h1 span {
  color: var(--mint);
}

.hero p {
  max-width: 610px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  line-height: 1.76;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.button-primary {
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  box-shadow: 0 16px 34px rgba(15, 157, 138, 0.24);
}

.button-secondary {
  min-height: 54px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
}

.hero-panel {
  min-height: 500px;
}

.hero-image {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 34px;
  box-shadow: 0 30px 72px rgba(0, 0, 0, 0.32);
}

.hero-card {
  position: absolute;
  right: 22px;
  bottom: 28px;
  display: flex;
  width: min(320px, calc(100% - 44px));
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(8, 38, 34, 0.82);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(16px);
}

.hero-card svg {
  flex: 0 0 auto;
  color: var(--copper-soft);
}

.hero-card div {
  display: grid;
  gap: 4px;
}

.hero-card strong {
  font-size: 1.04rem;
}

.hero-card span {
  color: var(--mint);
  font-weight: 900;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: -34px;
  position: relative;
  z-index: 3;
}

.metrics div {
  min-height: 132px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 54px rgba(8, 38, 34, 0.08);
}

.metrics strong {
  display: block;
  color: var(--accent-dark);
  font-size: 2.45rem;
  font-weight: 950;
  letter-spacing: -0.07em;
  line-height: 1;
}

.metrics span {
  display: block;
  margin-top: 10px;
  color: var(--muted-ink);
  font-weight: 850;
}

.approach,
.pathway {
  padding: 108px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading.split {
  display: grid;
  max-width: none;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: end;
}

.section-heading.center {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.leadership-copy h2,
.contact-copy h2 {
  margin-top: 14px;
  font-size: clamp(2.3rem, 4.55vw, 4.15rem);
}

.section-heading p,
.approach-grid p,
.capability-card p,
.pathway-track p,
.leadership-copy p,
.contact-copy p {
  color: var(--muted-ink);
  line-height: 1.74;
}

.section-heading p {
  margin: 0;
  font-size: 1.02rem;
}

.section-heading.center p {
  max-width: 650px;
  margin: 18px auto 0;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.approach-grid article {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 20px 54px rgba(8, 38, 34, 0.055);
}

.approach-grid article > span {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 17px;
  background: rgba(15, 157, 138, 0.1);
  color: var(--accent-dark);
}

.approach-grid h3,
.capability-card h3,
.pathway-track h3,
.service-band h3 {
  margin: 20px 0 0;
  font-size: 1.16rem;
  letter-spacing: -0.025em;
}

.approach-grid p,
.capability-card p,
.pathway-track p {
  margin: 12px 0 0;
  font-size: 0.95rem;
}

.capabilities {
  padding: 104px 0;
  background:
    radial-gradient(circle at 10% 18%, rgba(168, 221, 211, 0.11), transparent 22rem),
    var(--deep);
  color: #fff;
}

.capabilities .section-heading h2,
.capabilities .section-heading p {
  color: #fff;
}

.capabilities .section-heading p {
  color: rgba(255, 255, 255, 0.65);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 46px;
}

.capability-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.16);
}



.capability-image {
  position: relative;
  height: 205px;
  padding: 0;
  overflow: hidden;
  background: #dfe7e4;
}

.capability-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.capability-image .second-image {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 46%;
  height: 46%;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
}

.capability-image.product {
  display: grid;
  place-items: center;
  padding: 22px;
  background: linear-gradient(145deg, #ffffff, #e6eeeb);
}

.capability-image.product img {
  object-fit: contain;
  filter: drop-shadow(0 14px 16px rgba(8, 38, 34, 0.08));
}

.capability-body {
  padding: 24px;
}

.capability-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--copper-soft);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.capability-card h3 {
  color: #fff;
  font-size: 1.25rem;
}

.capability-card p {
  color: rgba(255, 255, 255, 0.66);
}

.pathway-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.pathway-track article {
  position: relative;
  min-height: 230px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(8, 38, 34, 0.055);
}

.pathway-track article::after {
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(15, 157, 138, 0.08);
  content: "";
}

.pathway-track article > span {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 15px;
  background: var(--deep);
  color: var(--mint);
  font-weight: 950;
}

.pathway-track p {
  font-size: 0.88rem;
}

.service-band {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: 34px;
  align-items: start;
  margin-top: 18px;
  padding: 30px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 92% 18%, rgba(217, 139, 69, 0.18), transparent 18rem),
    var(--deep-soft);
  color: #fff;
}

.service-band h3 {
  margin-top: 10px;
  font-size: clamp(1.5rem, 2.6vw, 2.25rem);
}

.service-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-cloud span {
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.84rem;
  font-weight: 850;
}

.leadership-section {
  padding: 108px 0;
  background: #fff;
}

.leadership-single {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.leadership-single .expertise-tags {
  justify-content: center;
}

.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.expertise-tags span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid rgba(15, 157, 138, 0.2);
  border-radius: 999px;
  background: rgba(15, 157, 138, 0.07);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 850;
}

.expertise-tags svg {
  color: var(--accent-dark);
}

.contact-section {
  padding: 34px 0 108px;
  background: #fff;
}

.contact-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  padding: 56px;
  overflow: hidden;
  border-radius: 38px;
  background:
    radial-gradient(circle at 88% 18%, rgba(217, 139, 69, 0.22), transparent 20rem),
    linear-gradient(135deg, #082622, #0f3832);
  color: #fff;
  box-shadow: 0 30px 80px rgba(8, 38, 34, 0.2);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.68);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.button-secondary.light {
  border-color: rgba(255, 255, 255, 0.22);
}

.contact-panel {
  display: grid;
  gap: 13px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.065);
  backdrop-filter: blur(14px);
}

.contact-panel > a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 850;
  overflow-wrap: anywhere;
}

.contact-panel > a svg,
.contact-address svg {
  flex: 0 0 auto;
  color: var(--copper-soft);
}

.contact-address {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 850;
  line-height: 1.55;
}

.contact-address svg {
  margin-top: 2px;
}

.qr-card {
  display: grid;
  grid-template-columns: 82px 1fr;
  align-items: center;
  gap: 15px;
  padding: 15px;
  border-radius: 20px;
  background: #fff;
  color: var(--ink);
}

.qr-card img {
  width: 82px;
  height: 82px;
  object-fit: cover;
  border-radius: 12px;
}

.qr-card span {
  font-weight: 950;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px max(20px, calc((100% - 1180px) / 2));
  background: var(--deep);
  color: rgba(255, 255, 255, 0.68);
}

.footer-brand {
  min-width: max-content;
}

.site-footer p {
  margin: 0;
  font-weight: 850;
}

.site-footer > div {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
}

.site-footer svg {
  color: var(--copper-soft);
}

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

  .menu-button {
    display: grid;
  }

  .hero,
  .section-heading.split,
  .contact-card,
  .service-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 58px 40px;
  }

  .hero-panel {
    min-height: 420px;
  }

  .hero-image {
    height: 100%;
  }

  .metrics,
  .approach-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .pathway-track {
    grid-template-columns: repeat(5, minmax(210px, 1fr));
    overflow-x: auto;
    padding-bottom: 8px;
  }

}

@media (max-width: 720px) {
  .section-shell {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .brand strong {
    font-size: 0.82rem;
  }

  .brand small {
    font-size: 0.6rem;
  }

  .atom-mark {
    width: 40px;
    height: 40px;
  }

  .atom-mark img {
    width: 27px;
  }

  .zyclax-pill {
    padding: 7px 11px 6px;
  }

  .zyclax-pill small {
    font-size: 0.5rem;
    letter-spacing: 0.14em;
  }

  .brand-divider {
    height: 28px;
  }

  .hero {
    width: calc(100% - 20px);
    margin-top: 86px;
    padding: 42px 20px 24px;
    border-radius: 30px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 12vw, 3.35rem);
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .button-primary,
  .button-secondary {
    width: 100%;
  }

  .hero-panel {
    min-height: 330px;
  }

  .hero-card {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
  }

  .metrics,
  .approach-grid,
  .capability-grid {
    grid-template-columns: 1fr;
  }

  .metrics {
    margin-top: 14px;
  }

  .approach,
  .capabilities,
  .pathway,
  .leadership-section {
    padding: 76px 0;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .section-heading h2,
  .leadership-copy h2,
  .contact-copy h2 {
    font-size: clamp(2.15rem, 10.5vw, 3rem);
  }

  .capability-image {
    height: 220px;
  }

  .service-band,
  .contact-card {
    padding: 24px 18px;
    border-radius: 28px;
  }

  .contact-section {
    padding: 0 0 76px;
  }

  .qr-card {
    grid-template-columns: 72px 1fr;
  }

  .qr-card img {
    width: 72px;
    height: 72px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== Static-site icon and menu adjustments ===== */

/* Mobile nav is toggled by script.js via .is-open (already supported above) */

.menu-button {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-button.is-open span:nth-child(2) { opacity: 0; }
.menu-button.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1080px) {
  .menu-button { display: flex; }
}

/* Inline SVG icons (injected by script.js) */
.ico,
.badge-ico,
.line-ico,
.hero-card-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.ico svg { width: 17px; height: 17px; }

.badge-ico {
  width: 50px;
  height: 50px;
  border-radius: 17px;
  background: rgba(15, 157, 138, 0.1);
  color: var(--accent-dark);
}

.badge-ico svg { width: 22px; height: 22px; }

.line-ico svg { width: 19px; height: 19px; }

.hero-card-ico {
  color: var(--copper-soft);
}

.hero-card-ico svg { width: 22px; height: 22px; }

.site-footer .ico svg { width: 16px; height: 16px; }

/* ===== WordPress content, menus, widgets & comments ===== */

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 9999;
	width: auto;
	height: auto;
	clip: auto;
	padding: 10px 16px;
	background: #082622;
	color: #fff;
	border-radius: 6px;
	font-weight: 700;
}

/* wp_nav_menu outputs */
.desktop-nav ul,
.mobile-nav ul {
	list-style: none;
	display: flex;
	gap: 26px;
	margin: 0;
	padding: 0;
	align-items: center;
}

.mobile-nav ul {
	flex-direction: column;
	align-items: flex-start;
	gap: 14px;
}

/* Custom logo in header */
.custom-logo-mark .custom-logo {
	width: 40px;
	height: 40px;
	object-fit: contain;
	display: block;
}

/* Footer widgets */
.footer-widgets {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 28px;
	padding-top: 40px;
	padding-bottom: 10px;
}

.footer-widget .widget-title {
	font-size: 0.78rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #082622;
	margin: 0 0 10px;
}

.footer-widget ul { list-style: none; margin: 0; padding: 0; }
.footer-widget li { margin-bottom: 6px; }
.footer-widget a { color: #55606a; text-decoration: none; }
.footer-widget a:hover { color: #0f9d8a; }

/* Footer nav */
.footer-nav ul {
	list-style: none;
	display: flex;
	gap: 20px;
	margin: 8px 0 0;
	padding: 0;
	justify-content: center;
	flex-wrap: wrap;
}

.footer-nav a { color: rgba(255, 255, 255, 0.72); text-decoration: none; font-size: 0.84rem; }
.footer-nav a:hover { color: #fff; }

/* Generic content area (pages, posts, archives, search, 404) */
.content-area {
	max-width: 860px;
	margin: 0 auto;
	padding-top: 64px;
	padding-bottom: 80px;
}

.page-header { margin-bottom: 32px; }

.page-title,
.entry-title {
	font-size: clamp(1.7rem, 3.4vw, 2.4rem);
	color: #082622;
	line-height: 1.2;
	margin: 0 0 12px;
}

.entry-title a { color: inherit; text-decoration: none; }
.entry-title a:hover { color: #0f9d8a; }

.archive-description { color: #55606a; }

.post-list {
	display: grid;
	gap: 26px;
}

.post-card {
	background: #fff;
	border-radius: 14px;
	padding: 26px 28px;
	box-shadow: 0 10px 30px rgba(8, 38, 34, 0.07);
}

.post-card .post-thumbnail {
	display: block;
	margin: -26px -28px 18px;
	border-radius: 14px 14px 0 0;
	overflow: hidden;
}

.post-card .post-thumbnail img { width: 100%; height: auto; display: block; }

.entry-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	font-size: 0.82rem;
	color: #7a8288;
	margin-bottom: 12px;
}

.entry-summary p { color: #55606a; margin: 0 0 12px; }

.read-more {
	font-weight: 700;
	color: #0f9d8a;
	text-decoration: none;
	font-size: 0.88rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.read-more:hover { color: #d98b45; }

/* Single post / page body */
.post-single { max-width: 760px; }

.post-single .post-thumbnail { margin: 20px 0 28px; }
.post-single .post-thumbnail img { width: 100%; height: auto; border-radius: 14px; display: block; }

.entry-content { line-height: 1.75; color: #333; }
.entry-content p { margin: 0 0 1.2em; }
.entry-content h1, .entry-content h2, .entry-content h3, .entry-content h4 { color: #082622; line-height: 1.25; margin: 1.6em 0 0.6em; }
.entry-content a { color: #0f9d8a; }
.entry-content a:hover { color: #d98b45; }
.entry-content ul, .entry-content ol { margin: 0 0 1.2em; padding-left: 1.4em; }
.entry-content blockquote {
	border-left: 3px solid #0f9d8a;
	margin: 1.5em 0;
	padding: 0.2em 0 0.2em 1.25em;
	color: #55606a;
	font-style: italic;
}
.entry-content img { max-width: 100%; height: auto; }
.entry-content table { width: 100%; border-collapse: collapse; margin: 1.5em 0; }
.entry-content th, .entry-content td { padding: 8px 12px; border-bottom: 1px solid #d7dedb; text-align: left; }
.entry-content thead th { border-bottom: 2px solid #082622; }
.entry-content code { background: #f5f5f5; padding: 2px 6px; border-radius: 3px; font-size: 0.92em; }
.entry-content pre { background: #f5f5f5; padding: 16px; overflow-x: auto; border-radius: 8px; }

.alignnone { margin-left: 0; margin-right: 0; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignleft { float: left; margin: 0.4em 1.4em 1em 0; }
.alignright { float: right; margin: 0.4em 0 1em 1.4em; }
.alignwide { max-width: 1080px; }
.alignfull { width: 100%; }

.wp-caption, .gallery-caption { max-width: 100%; color: #7a8288; font-size: 0.85rem; }
.wp-caption-text { padding-top: 6px; }

.sticky { border: 1px solid #e2e8e5; }
.bypostauthor { /* required by theme check */ }

/* Pagination & post navigation */
.pagination,
.post-navigation {
	margin-top: 44px;
}

.pagination .nav-links {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.pagination a,
.pagination span.current,
.pagination span.dots {
	padding: 8px 14px;
	border-radius: 8px;
	background: #fff;
	color: #082622;
	text-decoration: none;
	box-shadow: 0 4px 14px rgba(8, 38, 34, 0.06);
}

.pagination span.current { background: #082622; color: #fff; }
.pagination a:hover { background: #0f9d8a; color: #fff; }

.post-navigation .nav-links {
	display: flex;
	justify-content: space-between;
	gap: 18px;
}

.post-navigation a { text-decoration: none; color: #082622; display: grid; }
.post-navigation .nav-subtitle { font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: #7a8288; }
.post-navigation .nav-title { font-weight: 700; }

/* Search form */
.search-form {
	display: flex;
	gap: 10px;
	margin: 20px 0;
}

.search-form label { flex: 1; }

.search-field {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid #d7dedb;
	border-radius: 10px;
	font: inherit;
	background: #fff;
	color: #333;
}

.search-submit {
	padding: 12px 22px;
	border: 0;
	border-radius: 10px;
	background: #082622;
	color: #fff;
	font-weight: 700;
	cursor: pointer;
}

.search-submit:hover { background: #0f9d8a; }

/* Comments */
.comments-area {
	max-width: 760px;
	margin-top: 56px;
	padding-top: 32px;
	border-top: 1px solid #d7dedb;
}

.comments-title { font-size: 1.3rem; color: #082622; margin-bottom: 24px; }

.comment-list { list-style: none; margin: 0 0 32px; padding: 0; }
.comment-list .children { list-style: none; padding-left: 28px; margin-top: 18px; }

.comment-item { margin-bottom: 22px; }

.comment-body {
	background: #fff;
	border-radius: 12px;
	padding: 20px 22px;
	box-shadow: 0 6px 20px rgba(8, 38, 34, 0.06);
}

.comment-meta {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin-bottom: 10px;
	font-size: 0.85rem;
}

.comment-author { display: flex; align-items: center; gap: 10px; }
.comment-author img { border-radius: 50%; }
.comment-metadata a { color: #7a8288; text-decoration: none; font-size: 0.78rem; }
.edit-link { margin-left: 10px; }
.comment-awaiting-moderation { color: #d98b45; font-size: 0.8rem; }

.comment-content { color: #333; }
.comment-content p { margin: 0 0 0.8em; }

.reply a {
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #0f9d8a;
	text-decoration: none;
}

/* Comment form */
.comment-form p { margin: 0 0 14px; }
.comment-form label { display: block; margin-bottom: 6px; font-size: 0.85rem; font-weight: 700; color: #082622; }
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid #d7dedb;
	border-radius: 10px;
	font: inherit;
	background: #fff;
	color: #333;
	box-sizing: border-box;
}

.comment-form .submit {
	padding: 12px 26px;
	border: 0;
	border-radius: 10px;
	background: #082622;
	color: #fff;
	font-weight: 700;
	cursor: pointer;
}

.comment-form .submit:hover { background: #0f9d8a; }

.comment-form-cookies-consent { display: flex; align-items: center; gap: 8px; }
.comment-form-cookies-consent label { margin: 0; font-weight: 400; }

@media (max-width: 640px) {
	.content-area { padding-top: 40px; }
	.post-card { padding: 20px; }
	.post-card .post-thumbnail { margin: -20px -20px 16px; }
	.post-navigation .nav-links { flex-direction: column; }
}
