/*
Theme Name: Dongyu Squishy
Theme URI: https://example.com/dongyu-squishy
Author: Jinhua Dongyu Toys Co., Ltd.
Author URI: https://www.tianyancha.com/company/6938446848
Description: A minimalist editable WordPress theme for a squishy toy manufacturer, with Customizer-controlled homepage sections and entrance animations.
Version: 1.1.2
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dongyu-squishy
Tags: customizer, custom-logo, one-page, business, portfolio
*/

:root {
  --ink: #171512;
  --muted: #6e6860;
  --paper: #fbf7f0;
  --surface: #fffdf8;
  --line: rgba(23, 21, 18, 0.13);
  --mint: #a9d8c2;
  --coral: #e98e75;
  --violet: #c5a4d8;
  --ochre: #d7a64d;
  --shadow: 0 24px 80px rgba(79, 65, 49, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f8f2ea;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Noto Sans", "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  isolation: isolate;
  line-height: 1.5;
}

.ambient-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: linear-gradient(180deg, #fffaf4 0%, #f8f2ea 46%, #f3ede5 100%);
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

.ambient-bg::before,
.ambient-bg::after {
  position: absolute;
  content: "";
}

.ambient-bg::before {
  inset: -6% -8%;
  opacity: 0.16;
  background-image: url("assets/squishy-hero.png");
  background-position: right -10vw top 88px;
  background-repeat: no-repeat;
  background-size: min(980px, 74vw) auto;
  filter: saturate(0.95) contrast(1.02);
  transform-origin: 74% 20%;
  animation: ambientProductFloat 36s ease-in-out infinite alternate;
}

.ambient-bg::after {
  inset: 0;
  background:
    linear-gradient(118deg, transparent 0 10%, rgba(169, 216, 194, 0.12) 10% 26%, transparent 26% 54%, rgba(255, 255, 255, 0.48) 54% 66%, transparent 66%),
    linear-gradient(72deg, transparent 0 58%, rgba(197, 164, 216, 0.1) 58% 76%, transparent 76%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.1) 0%, rgba(246, 240, 231, 0.58) 100%);
  animation: ambientGlassShift 32s ease-in-out infinite alternate;
}

@keyframes ambientProductFloat {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(-18px, 14px, 0) scale(1.035);
  }
}

@keyframes ambientGlassShift {
  from {
    transform: translate3d(-12px, 0, 0);
  }

  to {
    transform: translate3d(16px, 0, 0);
  }
}

@keyframes headerIn {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroImageIn {
  from {
    opacity: 0;
    transform: scale(1.04);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.has-reveal .reveal-item {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.has-reveal .reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.has-reveal .reveal-item[data-reveal="soft"] {
  transform: translateY(18px);
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid transparent;
  color: var(--ink);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
  animation: headerIn 640ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.site-header.is-scrolled {
  background: rgba(251, 247, 240, 0.88);
  border-color: var(--line);
  box-shadow: 0 10px 36px rgba(47, 39, 29, 0.06);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0;
}

.custom-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-size: 15px;
  line-height: 1.1;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}

.site-nav {
  justify-self: center;
  display: inline-flex;
  gap: clamp(18px, 3vw, 34px);
  color: rgba(23, 21, 18, 0.76);
  font-size: 14px;
}

.site-nav ul {
  display: inline-flex;
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  position: relative;
  padding-block: 7px;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
}

.header-cta {
  padding: 0 18px;
  border: 1px solid var(--ink);
  font-size: 13px;
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(720px, 86vh);
  padding: clamp(108px, 13vh, 138px) clamp(20px, 4vw, 56px) 58px;
  overflow: hidden;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(180deg, rgba(251, 247, 240, 0), var(--paper));
  content: "";
  pointer-events: none;
  animation: heroFadeIn 900ms ease 260ms both;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform-origin: center;
  animation: heroImageIn 1200ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(251, 247, 240, 0.97) 0%, rgba(251, 247, 240, 0.82) 30%, rgba(251, 247, 240, 0.13) 64%),
    linear-gradient(180deg, rgba(251, 247, 240, 0.72) 0%, rgba(251, 247, 240, 0) 36%);
  content: "";
  animation: heroFadeIn 820ms ease 100ms both;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(610px, 100%);
}

.hero-copy > * {
  animation: heroTextIn 760ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-copy > *:nth-child(1) {
  animation-delay: 120ms;
}

.hero-copy > *:nth-child(2) {
  animation-delay: 230ms;
}

.hero-copy > *:nth-child(3) {
  animation-delay: 350ms;
}

.hero-copy > *:nth-child(4) {
  animation-delay: 470ms;
}

.eyebrow {
  margin: 0 0 16px;
  color: #8f624d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  max-width: 10.5ch;
  font-size: clamp(48px, 5.6vw, 78px);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-text {
  max-width: 540px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  border: 1px solid var(--ink);
  padding: 0 22px;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  transition:
    transform 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--ink);
  color: var(--surface);
}

.button.secondary {
  background: rgba(255, 253, 248, 0.48);
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(1180px, calc(100% - 40px));
  margin: -24px auto 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.intro-strip div {
  min-height: 120px;
  padding: 24px;
  background: rgba(255, 253, 248, 0.93);
}

.intro-strip span {
  display: block;
  margin-bottom: 18px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
}

.intro-strip p {
  margin: 0;
  max-width: 250px;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 720;
  line-height: 1.22;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(76px, 10vw, 132px) 0 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.38fr) minmax(0, 0.62fr);
  gap: 36px;
  align-items: start;
  margin-bottom: 34px;
}

.section-heading h2 {
  margin-bottom: 0;
  max-width: 760px;
  font-size: clamp(34px, 5vw, 66px);
  line-height: 1;
  letter-spacing: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.about-panel {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.66);
  box-shadow: 0 18px 58px rgba(67, 55, 40, 0.06);
}

.about-copy p {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.42;
}

.about-meta {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(23, 21, 18, 0.16);
}

.about-meta article {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(23, 21, 18, 0.16);
}

.about-meta span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.about-meta p {
  margin: 0;
  color: var(--muted);
}

.page-section {
  padding-bottom: clamp(76px, 10vw, 132px);
}

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

.b2b-card {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 18px 58px rgba(67, 55, 40, 0.06);
}

.b2b-card .eyebrow {
  margin-bottom: 38px;
}

.b2b-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.1;
}

.b2b-card p {
  margin: 0;
  color: var(--muted);
}

.registered-info {
  margin-top: 22px;
}

.registered-info strong {
  color: var(--ink);
}

.product-grid article,
.product-card {
  display: grid;
  align-content: start;
  min-height: 290px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.55);
  transition:
    background 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.product-card:hover {
  background: rgba(255, 253, 248, 0.86);
  box-shadow: 0 18px 46px rgba(79, 65, 49, 0.1);
  transform: translateY(-2px);
}

.swatch {
  display: block;
  width: 54px;
  height: 54px;
  margin-bottom: 56px;
  border: 1px solid rgba(23, 21, 18, 0.08);
  border-radius: 50%;
}

.swatch.mint {
  background: var(--mint);
}

.swatch.coral {
  background: var(--coral);
}

.swatch.violet {
  background: var(--violet);
}

.swatch.ochre {
  background: var(--ochre);
}

.product-grid h3,
.timeline h3,
.contact-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.1;
}

.product-grid p,
.timeline p,
.custom-copy p,
.contact-card,
.feature-list {
  color: var(--muted);
}

.product-card .text-link {
  align-self: end;
  margin-top: 26px;
}

.product-archive {
  padding-top: clamp(116px, 15vh, 158px);
  padding-bottom: clamp(76px, 10vw, 132px);
}

.application-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.application-grid .b2b-card {
  min-height: 190px;
}

.single-intro {
  width: min(680px, 100%);
  margin: 18px auto 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.split {
  width: 100%;
  max-width: none;
}

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

.custom-panel {
  display: grid;
  grid-template-columns: 0.44fr 0.56fr;
  gap: clamp(32px, 6vw, 90px);
  align-items: stretch;
  padding: clamp(36px, 6vw, 68px);
  border-block: 1px solid var(--line);
  background: #f2eee5;
}

.custom-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(28px, 4vw, 48px);
}

.custom-copy p {
  max-width: 420px;
  margin-bottom: 0;
  font-size: 20px;
}

.custom-support-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(23, 21, 18, 0.18);
}

.custom-support-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(23, 21, 18, 0.18);
}

.custom-support-item span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(169, 216, 194, 0.72);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.custom-support-item h3 {
  margin: 0 0 7px;
  font-size: 18px;
  line-height: 1.12;
}

.custom-support-item p {
  max-width: 440px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.text-link {
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-weight: 750;
}

.feature-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(23, 21, 18, 0.18);
}

.feature-list li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 22px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(23, 21, 18, 0.18);
}

.feature-list span {
  color: var(--ink);
  font-weight: 800;
}

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

.timeline.extended {
  grid-template-columns: repeat(4, 1fr);
}

.timeline article {
  min-height: 245px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.timeline span {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 70px;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--ink);
  font-weight: 800;
}

.contact {
  padding-bottom: clamp(76px, 10vw, 132px);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 20px;
}

.contact-card,
.inquiry-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 20px 60px rgba(67, 55, 40, 0.07);
}

.contact-card {
  min-height: 430px;
  padding: clamp(28px, 4vw, 44px);
}

.contact-card .text-link {
  margin-top: 18px;
}

.cn-name {
  margin-bottom: 30px;
  color: var(--ink);
  font-weight: 700;
}

address {
  max-width: 560px;
  margin-bottom: 28px;
  font-style: normal;
}

.inquiry-card {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 34px);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

input {
  min-height: 50px;
  padding: 0 15px;
}

textarea {
  resize: vertical;
  min-height: 120px;
  padding: 13px 15px;
}

input:focus,
textarea:focus {
  border-color: rgba(23, 21, 18, 0.42);
  box-shadow: 0 0 0 4px rgba(169, 216, 194, 0.22);
}

.inquiry-card .button {
  width: fit-content;
  min-width: 156px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #f2eee5;
  color: var(--muted);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) repeat(3, minmax(150px, 0.75fr));
  gap: clamp(28px, 5vw, 74px);
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(48px, 7vw, 86px) 0;
}

.footer-brand {
  display: grid;
  gap: 22px;
  align-content: start;
}

.footer-brand .brand {
  width: fit-content;
}

.footer-brand p {
  max-width: 410px;
  margin: 0;
}

.footer-column {
  display: grid;
  gap: 12px;
  align-content: start;
  font-size: 14px;
}

.footer-column h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.1;
}

.footer-column address {
  margin: 0;
  color: var(--muted);
  font-style: normal;
}

.footer-column a {
  width: fit-content;
  color: var(--muted);
}

.footer-column a:hover {
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0;
  border-top: 1px solid rgba(23, 21, 18, 0.14);
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
}

.policy-links,
.policy-links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.policy-links a {
  color: var(--muted);
}

.policy-links a:hover {
  color: var(--ink);
}

.news-section {
  padding-bottom: clamp(76px, 10vw, 132px);
}

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

.news-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 58px rgba(67, 55, 40, 0.06);
}

.news-card-image {
  display: grid;
  aspect-ratio: 1.42;
  place-items: center;
  overflow: hidden;
  background: #f2eee5;
  color: rgba(23, 21, 18, 0.4);
  font-size: 13px;
  font-weight: 800;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.news-card:hover .news-card-image img {
  transform: scale(1.035);
}

.news-card-body {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.news-card time,
.single-meta,
.single-back {
  color: #8f624d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.news-card h3 {
  margin: 0;
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.08;
}

.news-card p {
  margin: 0;
  color: var(--muted);
}

.news-empty {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.66);
  color: var(--muted);
}

.news-empty p {
  margin: 0;
}

.single-main {
  padding: clamp(116px, 15vh, 158px) clamp(20px, 4vw, 56px) clamp(76px, 10vw, 132px);
}

.single-article {
  width: min(980px, 100%);
  margin: 0 auto;
}

.single-hero {
  width: min(860px, 100%);
  margin-bottom: clamp(32px, 5vw, 58px);
}

.single-back {
  display: inline-flex;
  margin-bottom: 28px;
  border-bottom: 1px solid currentColor;
}

.single-hero h1 {
  max-width: 920px;
  margin-bottom: 22px;
  font-size: clamp(46px, 6vw, 84px);
  line-height: 0.98;
}

.single-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.single-meta span::before {
  content: "/";
  margin-right: 12px;
  color: rgba(23, 21, 18, 0.32);
}

.single-featured-image {
  margin: 0 0 clamp(34px, 6vw, 70px);
  overflow: hidden;
  border-radius: 8px;
  background: #f2eee5;
}

.single-featured-image img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
}

.single-content {
  width: min(760px, 100%);
  margin: 0 auto;
  color: var(--ink);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.74;
}

.single-content > * {
  margin-top: 0;
  margin-bottom: 1.35em;
}

.single-content h2,
.single-content h3,
.single-content h4 {
  margin-top: 1.75em;
  margin-bottom: 0.65em;
  line-height: 1.1;
}

.single-content h2 {
  font-size: clamp(30px, 4vw, 48px);
}

.single-content h3 {
  font-size: clamp(24px, 3vw, 34px);
}

.single-content p,
.single-content li {
  color: var(--muted);
}

.single-content a {
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-weight: 750;
}

.single-content img {
  height: auto;
  border-radius: 8px;
}

.single-content blockquote {
  margin-right: 0;
  margin-left: 0;
  padding: 4px 0 4px 24px;
  border-left: 2px solid var(--coral);
  color: var(--ink);
  font-size: 1.14em;
}

.posts-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 34px;
}

.posts-pagination a,
.posts-pagination span {
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.72);
  padding: 0 14px;
  color: var(--ink);
}

.single-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  width: min(760px, 100%);
  margin: clamp(40px, 6vw, 76px) auto 0;
}

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

  .has-reveal .reveal-item {
    opacity: 1;
    transform: none;
  }

  .ambient-bg::before,
  .ambient-bg::after {
    animation: none !important;
  }
}

@media (max-width: 930px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .header-cta {
    display: none;
  }

  .menu-button {
    justify-self: end;
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 7px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 253, 248, 0.68);
  }

  .menu-button span {
    display: block;
    width: 18px;
    height: 1px;
    background: var(--ink);
  }

  .site-nav {
    position: fixed;
    top: 76px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    gap: 4px;
    justify-self: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 253, 248, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav ul {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .site-nav a {
    padding: 12px 6px;
  }

  .hero {
    min-height: 760px;
    padding-top: 118px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(251, 247, 240, 0.99) 0%, rgba(251, 247, 240, 0.88) 44%, rgba(251, 247, 240, 0.12) 82%),
      linear-gradient(90deg, rgba(251, 247, 240, 0.72), rgba(251, 247, 240, 0));
  }

  .hero-image {
    object-position: 66% center;
  }

  h1 {
    max-width: 9.6ch;
  }

  .intro-strip,
  .about-panel,
  .about-meta article,
  .news-grid,
  .product-grid,
  .b2b-grid,
  .application-grid,
  .timeline,
  .timeline.extended,
  .contact-grid,
  .custom-panel,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .intro-strip {
    margin-top: 0;
  }

  .product-grid {
    border-left: 1px solid var(--line);
  }

  .product-grid article,
  .product-card {
    min-height: 240px;
  }

  .swatch {
    margin-bottom: 34px;
  }

  .custom-panel {
    padding: 30px 20px;
  }

  .feature-list li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .custom-support-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .about-panel {
    padding: 30px 20px;
  }

  .timeline span {
    margin-bottom: 42px;
  }

  .single-hero h1 {
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand small {
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero {
    min-height: 720px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero-copy {
    width: min(100%, 342px);
  }

  h1 {
    max-width: 9.5ch;
    font-size: clamp(44px, 14vw, 58px);
  }

  .hero-text {
    max-width: 322px;
    font-size: 16px;
  }

  .hero-actions {
    width: min(100%, 342px);
  }

  .hero-actions,
  .single-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section,
  .intro-strip,
  .split .section-heading,
  .custom-panel,
  .news-section {
    width: calc(100% - 28px);
  }

  .section-heading {
    gap: 10px;
  }

  .section-heading h2 {
    font-size: clamp(34px, 13vw, 50px);
  }

  .news-card-body {
    padding: 22px;
  }

  .single-main {
    padding-right: 18px;
    padding-left: 18px;
  }

  .single-hero h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .single-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-inner,
  .footer-bottom {
    width: calc(100% - 28px);
  }
}

@media (max-width: 1040px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}
