:root {
  --green: #08964b;
  --green-dark: #00783a;
  --green-soft: #e9f7ef;
  --text: #1d2731;
  --muted: #66727e;
  --line: #e5ebef;
  --surface: #ffffff;
  --section: #f7f9f8;
  --shadow: 0 22px 70px rgba(17, 34, 51, 0.08);
  --radius: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.section { padding: 88px 0; }
.section-large { padding: 92px 0 120px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(229, 235, 239, 0.85);
}
.header-inner {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand-mark {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
}
.brand-mark svg { width: 100%; height: 100%; }
.brand-mark rect { fill: var(--green); }
.brand-text strong {
  display: block;
  font-size: 18px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.brand-text em {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  color: var(--green);
  font-style: italic;
  font-weight: 600;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
  color: #2f3a44;
}
.main-nav a { position: relative; padding: 34px 0; }
.main-nav a.active::after,
.main-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;
  height: 3px;
  border-radius: 999px;
  background: var(--green);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}
.phone-link {
  font-weight: 700;
  font-size: 15px;
  color: #1f2a33;
}
.phone-link::before { content: "☎"; color: var(--green); margin-right: 8px; }
.menu-toggle { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 25px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #fff;
  background: var(--green);
  box-shadow: 0 14px 32px rgba(8, 150, 75, 0.22);
}
.btn-primary:hover { background: var(--green-dark); }
.btn-outline {
  border: 2px solid var(--green);
  color: var(--green-dark);
  background: #fff;
}
.btn-light {
  background: #fff;
  color: var(--green-dark);
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 0% 48%, rgba(8, 150, 75, .12), transparent 23%),
    linear-gradient(90deg, #fbfcfb 0%, #fbfcfb 52%, #f1f1ed 52%, #f7f4ef 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 88px;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
}
.hero h1 {
  max-width: 580px;
  margin: 0;
  font-size: clamp(48px, 5vw, 76px);
  line-height: .97;
  letter-spacing: -0.055em;
}
.hero-subtitle {
  margin: 28px 0 16px;
  color: var(--green);
  font-size: 22px;
  font-weight: 800;
}
.hero-text {
  max-width: 520px;
  margin: 0;
  color: #4e5a64;
  font-size: 18px;
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 42px;
}
.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: center;
  justify-items: center;
}
.lift-render {
  position: relative;
  z-index: 2;
  width: min(560px, 100%);
  aspect-ratio: 1.2 / .92;
  padding: 40px 82px 40px 40px;
  background: linear-gradient(135deg, #dbddd9, #aeb3ae 45%, #eee 46%, #b2b7b4);
  border: 14px solid #c6cac8;
  box-shadow: 0 28px 70px rgba(0,0,0,.24);
}
.lift-frame {
  position: relative;
  height: 100%;
  background: linear-gradient(90deg, #313334, #979b98 13%, #e5e6e4 45%, #656b68 100%);
  border: 8px solid #2f3231;
  overflow: hidden;
}
.lift-frame::before,
.lift-frame::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 14px;
  background: rgba(255,255,255,.35);
}
.lift-frame::before { top: 22px; }
.lift-frame::after { bottom: 22px; }
.lift-shelf {
  position: absolute;
  left: 8%;
  right: 8%;
  height: 9px;
  background: linear-gradient(#f5f5f3, #7f8581);
  box-shadow: 0 2px 8px rgba(0,0,0,.28);
}
.shelf-top { top: 43%; }
.shelf-bottom { top: 73%; }
.food,
.plates {
  position: absolute;
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
}
.food-top { top: 30%; width: 130px; height: 32px; background: radial-gradient(circle, #2d7c3f 10%, #fff 12%, #fff 55%, #d6d8d2 58%); }
.plates { top: 57%; width: 120px; height: 50px; background: repeating-linear-gradient(0deg, #fff 0 7px, #d4d5d2 7px 9px); border-radius: 20px; }
.food-bottom { top: 68%; width: 150px; height: 38px; background: radial-gradient(circle at 60% 44%, #d25f35 0 8%, #32814d 9% 16%, #fff 17% 55%, #dadbd6 57%); }
.lift-controls {
  position: absolute;
  top: 20%;
  right: 22px;
  width: 44px;
  display: grid;
  gap: 14px;
  justify-items: center;
}
.lift-controls span:not(.display) {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #e9ecea;
  border: 2px solid #808987;
}
.lift-controls .display {
  width: 40px;
  height: 58px;
  display: grid;
  place-items: center;
  background: #11181b;
  color: #fff;
  border-radius: 6px;
  font-size: 24px;
  font-weight: 600;
}
.lift-controls .danger { background: #d82222 !important; border-color: #911 !important; }
.kitchen-panel {
  position: absolute;
  right: -42px;
  top: 34px;
  bottom: 34px;
  width: 210px;
  border-radius: 0 0 0 34px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.08), rgba(0,0,0,.1)),
    repeating-linear-gradient(90deg, #6b4a31 0 42px, #7b5538 42px 84px);
  opacity: .78;
}

.feature-strip-wrapper {
  margin-top: -56px;
  position: relative;
  z-index: 5;
}
.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.mini-feature {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 34px 30px;
  border-right: 1px solid var(--line);
}
.mini-feature:last-child { border-right: 0; }
.icon {
  color: var(--green);
  font-size: 44px;
  line-height: 1;
  min-width: 46px;
}
.mini-feature h3 {
  margin: 0 0 4px;
  font-size: 15px;
  line-height: 1.25;
}
.mini-feature p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.section-heading { margin-bottom: 44px; }
.section-heading.centered { text-align: center; }
.section-heading h2 {
  margin: 0;
  text-transform: uppercase;
  font-size: 26px;
  letter-spacing: .02em;
  line-height: 1.2;
}
.heading-line {
  display: block;
  width: 44px;
  height: 3px;
  margin-top: 12px;
  background: var(--green);
  border-radius: 999px;
}
.centered .heading-line { margin-left: auto; margin-right: auto; }

.product-section { padding-top: 92px; padding-bottom: 96px; }
.carousel-shell { position: relative; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}
.product-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(17, 34, 51, 0.06);
}
.product-image {
  height: 190px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.18), rgba(0,0,0,.05)),
    radial-gradient(circle at 54% 50%, #dfe4e0 0 18%, #777e7b 19% 43%, #d9dbd8 44% 45%, transparent 46%),
    linear-gradient(90deg, #eee, #c7c4bd);
}
.product-residential { background-color: #eee9df; }
.product-commercial { background-color: #dadbd7; }
.product-marine { background-color: #e7e9e6; }
.product-underbench { background-color: #d5c4ad; }
.product-body { padding: 28px 28px 30px; }
.product-card h3 {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 19px;
}
.product-card p {
  min-height: 74px;
  margin: 0 0 24px;
  color: #4e5a64;
  font-size: 15px;
}
.product-card a {
  color: var(--green);
  font-weight: 800;
  font-size: 14px;
}
.carousel-arrow {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 50%;
  background: #f1f4f2;
  color: #2b363f;
  font-size: 36px;
  cursor: pointer;
}
.carousel-arrow.left { left: -70px; }
.carousel-arrow.right { right: -70px; }
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 13px;
  margin-top: 38px;
}
.slider-dots span {
  width: 14px;
  height: 7px;
  border-radius: 999px;
  background: #ccd4d0;
}
.slider-dots .active { width: 22px; background: var(--green); }

.about-section { padding-top: 96px; padding-bottom: 96px; background: linear-gradient(#fff, #fbfcfb); }
.about-card {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 74px;
  align-items: center;
  padding: 56px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 55px rgba(17, 34, 51, 0.05);
}
.about-copy > p {
  margin: -12px 0 34px;
  color: #40505b;
  font-size: 16px;
}
.about-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px 34px;
}
.about-points article {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.about-points span {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 50%;
  font-weight: 800;
}
.about-points h3 { margin: 0 0 4px; font-size: 15px; }
.about-points p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.45; }
.about-image {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(118,186,238,.35), rgba(255,255,255,.08) 35%),
    linear-gradient(90deg, transparent 0 8%, #d8dedc 8% 64%, #aeb6b5 64% 100%);
  box-shadow: inset 0 -80px 0 rgba(8, 150, 75, .08);
}
.about-image::before {
  content: "";
  position: absolute;
  left: 9%;
  right: 7%;
  bottom: 0;
  height: 72%;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.55) 0 26px, rgba(70,90,95,.2) 27px 29px),
    linear-gradient(#e9ecea, #c5ccc9);
  clip-path: polygon(0 24%, 68% 0, 100% 18%, 100% 100%, 0 100%);
}
.building-sign {
  position: absolute;
  left: 38%;
  top: 45%;
  transform: translate(-50%, -50%);
  z-index: 2;
  padding: 14px 22px;
  color: #fff;
  background: var(--green);
  font-weight: 800;
  line-height: 1.1;
  border-radius: 3px;
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
}

.industries-section { padding-top: 94px; padding-bottom: 80px; }
.industry-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 34px;
  text-align: center;
}
.industry-grid article { padding: 10px 4px; }
.industry-grid span {
  display: block;
  color: var(--green);
  font-size: 42px;
  line-height: 1;
  margin-bottom: 15px;
}
.industry-grid p { margin: 0; font-weight: 700; font-size: 14px; }

.process-section { padding-top: 82px; padding-bottom: 112px; background: #fff; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}
.process-card {
  position: relative;
  min-height: 160px;
  padding: 34px 28px 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 14px 36px rgba(17, 34, 51, 0.045);
}
.step-number {
  position: absolute;
  top: 22px;
  left: 22px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}
.process-icon {
  display: block;
  margin: 6px 0 18px 46px;
  color: var(--green);
  font-size: 42px;
  line-height: 1;
}
.process-card h3 { margin: 0 0 8px 46px; font-size: 16px; }
.process-card p { margin: 0 0 0 46px; color: var(--muted); font-size: 13px; line-height: 1.45; }

.large-cta {
  padding: 78px 0;
  background:
    radial-gradient(circle at 85% 50%, rgba(255,255,255,.14), transparent 18%),
    linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
}
.cta-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}
.cta-icon {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--green);
  font-size: 42px;
}
.large-cta h2 {
  margin: 0 0 5px;
  font-size: clamp(32px, 3vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.035em;
}
.large-cta p {
  margin: 0;
  font-size: 19px;
  opacity: .92;
}

.site-footer { padding: 54px 0 24px; background: #f8faf9; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(4, 1fr);
  gap: 54px;
}
.footer-grid h3 {
  margin: 0 0 16px;
  font-size: 15px;
}
.footer-grid a,
.footer-grid p {
  display: block;
  margin: 0 0 9px;
  color: #53616b;
  font-size: 13px;
  line-height: 1.5;
}
.footer-brand p { margin: 22px 0 18px; max-width: 270px; }
.socials { display: flex; gap: 14px; }
.socials a {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #1c252d;
  font-weight: 800;
  margin: 0;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  margin-top: 40px;
  padding-top: 20px;
  color: #63717b;
  font-size: 12px;
}
.footer-bottom p { margin: 0; }
.footer-bottom a { color: #4d5962; }

@media (max-width: 1180px) {
  .main-nav { gap: 18px; font-size: 13px; }
  .phone-link { display: none; }
  .carousel-arrow.left { left: -20px; }
  .carousel-arrow.right { right: -20px; }
}

@media (max-width: 980px) {
  .main-nav, .header-actions { display: none; }
  .menu-toggle {
    display: inline-flex;
    border: 0;
    background: var(--green);
    color: #fff;
    border-radius: 10px;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    font-size: 22px;
  }
  .hero-grid, .about-card { grid-template-columns: 1fr; }
  .hero-grid { gap: 56px; }
  .hero-visual { min-height: 430px; }
  .feature-strip, .product-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .mini-feature:nth-child(2) { border-right: 0; }
  .mini-feature:nth-child(1), .mini-feature:nth-child(2) { border-bottom: 1px solid var(--line); }
  .industry-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 32px, var(--container)); }
  .section, .product-section, .about-section, .industries-section, .process-section { padding: 64px 0; }
  .section-large { padding: 62px 0 92px; }
  .header-inner { height: 76px; }
  .brand-mark { width: 44px; height: 44px; }
  .brand-text strong { font-size: 16px; }
  .hero h1 { font-size: 46px; }
  .hero-subtitle { font-size: 18px; }
  .hero-text { font-size: 16px; }
  .button-row { flex-direction: column; align-items: stretch; }
  .hero-visual { min-height: 320px; }
  .lift-render { padding: 28px 58px 28px 28px; border-width: 10px; }
  .kitchen-panel { width: 120px; right: -20px; }
  .feature-strip-wrapper { margin-top: -34px; }
  .feature-strip, .product-grid, .about-points, .industry-grid, .process-grid, .footer-grid { grid-template-columns: 1fr; }
  .mini-feature { border-right: 0; border-bottom: 1px solid var(--line); padding: 28px; }
  .mini-feature:last-child { border-bottom: 0; }
  .product-card p { min-height: auto; }
  .carousel-arrow { display: none; }
  .about-card { padding: 28px; gap: 36px; }
  .about-image { min-height: 270px; }
  .industry-grid { gap: 24px; }
  .large-cta { padding: 70px 0; }
  .footer-bottom { flex-direction: column; }
}

/* WordPress integration */
.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;
}
.screen-reader-text:focus {
  z-index: 9999;
  top: 12px; left: 12px;
  width: auto; height: auto;
  padding: 12px 16px;
  clip: auto;
  background: #fff;
  color: var(--text);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.main-nav ul,
.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav > div,
.main-nav .menu,
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav li { margin: 0; }
.main-nav li.current-menu-item > a::after,
.main-nav li.current_page_item > a::after,
.main-nav a.active::after,
.main-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;
  height: 3px;
  border-radius: 999px;
  background: var(--green);
}
.custom-logo-img {
  max-width: 230px;
  max-height: 72px;
  width: auto;
  height: auto;
}
.footer-grid .menu a,
.footer-grid .menu li { display: block; }
.footer-grid .menu a { margin: 0 0 9px; }

/* Internal page template */
.internal-hero {
  padding: 96px 0 104px;
  background:
    radial-gradient(circle at 0% 50%, rgba(8, 150, 75, .12), transparent 22%),
    linear-gradient(90deg, #fbfcfb 0%, #fbfcfb 62%, #f2f3ef 62%, #f8f5f0 100%);
  overflow: hidden;
}
.internal-hero-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 76px;
  align-items: center;
}
.internal-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.055em;
}
.internal-intro {
  max-width: 640px;
  margin: 28px 0 0;
  color: #4e5a64;
  font-size: 20px;
}
.compact-row { margin-top: 34px; }
.internal-visual {
  min-height: 360px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  overflow: hidden;
}
.internal-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.small-lift {
  transform: scale(.78);
  transform-origin: center;
}
.internal-content-section {
  padding-top: 104px;
  padding-bottom: 112px;
  background: #fff;
}
.internal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 60px;
  align-items: start;
}
.content-card {
  padding: 56px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 55px rgba(17, 34, 51, 0.05);
}
.narrow-content { max-width: 900px; }
.entry-content > *:first-child { margin-top: 0; }
.entry-content > *:last-child { margin-bottom: 0; }
.entry-content h2,
.entry-content h3,
.entry-content h4 {
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin: 1.7em 0 .6em;
}
.entry-content h2 { font-size: clamp(30px, 3vw, 42px); }
.entry-content h3 { font-size: clamp(24px, 2.3vw, 30px); }
.entry-content p,
.entry-content li {
  color: #40505b;
  font-size: 17px;
}
.entry-content a { color: var(--green-dark); font-weight: 700; }
.entry-content ul,
.entry-content ol { padding-left: 1.3em; }
.entry-content blockquote {
  margin: 38px 0;
  padding: 28px 32px;
  border-left: 4px solid var(--green);
  background: var(--green-soft);
  border-radius: 0 16px 16px 0;
}
.internal-sidebar {
  display: grid;
  gap: 28px;
  position: sticky;
  top: 112px;
}
.quote-card,
.side-links-card {
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 14px 36px rgba(17, 34, 51, 0.045);
}
.quote-card {
  background: linear-gradient(180deg, #fff, #f7fbf8);
}
.quote-card h2,
.side-links-card h3 {
  margin: 0 0 14px;
  line-height: 1.15;
}
.quote-card p { color: var(--muted); margin: 0 0 24px; }
.quote-card .btn { width: 100%; margin-bottom: 24px; }
.quote-card ul { list-style: none; margin: 0; padding: 0; }
.quote-card li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: #40505b;
  font-weight: 600;
  font-size: 14px;
}
.quote-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 800;
}
.side-links-card a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: #40505b;
  font-weight: 700;
}
.side-links-card a:last-child { border-bottom: 0; padding-bottom: 0; }
.archive-card {
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}
.archive-card:first-child { padding-top: 0; }
.archive-card:last-child { border-bottom: 0; }
.archive-card h2 { margin: 0 0 10px; font-size: 30px; }
.archive-card p { margin: 0 0 16px; color: var(--muted); }
.text-link { color: var(--green); font-weight: 800; }

/* Make CTA feel intentionally thick */
.large-cta { padding: 96px 0; }

@media (max-width: 980px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 18px 24px 26px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 45px rgba(17, 34, 51, 0.08);
  }
  body.nav-open .main-nav { display: block; }
  .main-nav > div,
  .main-nav .menu,
  .main-nav ul {
    display: grid;
    gap: 0;
  }
  .main-nav a { padding: 14px 0; display: block; }
  .main-nav a::after,
  .main-nav li.current-menu-item > a::after,
  .main-nav li.current_page_item > a::after { display: none; }
  .internal-hero-grid,
  .internal-layout { grid-template-columns: 1fr; }
  .internal-sidebar { position: static; }
}

@media (max-width: 640px) {
  .internal-hero { padding: 64px 0 72px; }
  .internal-content-section { padding: 64px 0; }
  .content-card, .quote-card, .side-links-card { padding: 28px; }
  .internal-intro { font-size: 17px; }
  .custom-logo-img { max-width: 180px; }
  .large-cta { padding: 78px 0; }
}
