/* 厦门汤米森贸易服务有限公司 — corporate landing */

:root {
  --color-bg: #0b0f14;
  --color-surface: #121820;
  --color-surface-elevated: #1a222d;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-text: #e8ecf1;
  --color-text-muted: #9aa3af;
  --color-accent: #e11d2e;
  --color-accent-hover: #ff3b4d;
  --color-accent-soft: rgba(225, 29, 46, 0.15);
  --color-blue: #1e4d8c;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Outfit", var(--font-sans);
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.45);
  --header-h: 72px;
  --max-w: 1180px;
  --header-bg: rgba(11, 15, 20, 0.85);
  --hero-overlay: linear-gradient(
    120deg,
    rgba(11, 15, 20, 0.92) 0%,
    rgba(11, 15, 20, 0.55) 45%,
    rgba(11, 15, 20, 0.88) 100%
  );
  --hero-radial: radial-gradient(ellipse 80% 50% at 70% 20%, rgba(225, 29, 46, 0.12), transparent 55%);
  --hero-card-bg: rgba(18, 24, 32, 0.75);
  --hero-card-hover-bg: rgba(26, 34, 45, 0.9);
  --hero-card-border-hover: rgba(225, 29, 46, 0.35);
  --product-card-gradient: linear-gradient(160deg, var(--color-surface-elevated), #0f141c);
  --product-card-border-hover: rgba(30, 77, 140, 0.5);
  --cta-bg: linear-gradient(110deg, #0d1520 0%, #1a0a0c 50%, #0d1520 100%);
  --cta-on-color: #f8fafc;
  --cta-on-muted: rgba(248, 250, 252, 0.78);
  --footer-bg: #070a0e;
  --nav-mobile-bg: rgba(11, 15, 20, 0.98);
  --btn-ghost-hover: rgba(255, 255, 255, 0.06);
  --btn-ghost-border-hover: rgba(255, 255, 255, 0.3);
  --news-row-hover-bg: rgba(255, 255, 255, 0.03);
  --modal-backdrop: rgba(0, 0, 0, 0.72);
  --modal-close-hover-bg: rgba(255, 255, 255, 0.06);
  --pill-border: rgba(225, 29, 46, 0.25);
  --skip-fg: #fff;
}

html[data-theme="light"] {
  color-scheme: light;
  --color-bg: #f0f4f8;
  --color-surface: #ffffff;
  --color-surface-elevated: #e8eef5;
  --color-border: rgba(15, 23, 42, 0.12);
  --color-text: #0f172a;
  --color-text-muted: #64748b;
  --color-accent: #c41e3a;
  --color-accent-hover: #e11d2e;
  --color-accent-soft: rgba(196, 30, 58, 0.12);
  --shadow-soft: 0 12px 40px rgba(15, 23, 42, 0.08);
  --header-bg: rgba(255, 255, 255, 0.92);
  --hero-overlay: linear-gradient(
    120deg,
    rgba(240, 244, 248, 0.94) 0%,
    rgba(240, 244, 248, 0.65) 45%,
    rgba(255, 255, 255, 0.9) 100%
  );
  --hero-radial: radial-gradient(ellipse 80% 50% at 70% 20%, rgba(196, 30, 58, 0.1), transparent 55%);
  --hero-card-bg: rgba(255, 255, 255, 0.94);
  --hero-card-hover-bg: #ffffff;
  --hero-card-border-hover: rgba(196, 30, 58, 0.35);
  --product-card-gradient: linear-gradient(160deg, #ffffff, #e8eef5);
  --product-card-border-hover: rgba(30, 77, 140, 0.4);
  --footer-bg: #e2e8f0;
  --nav-mobile-bg: rgba(255, 255, 255, 0.98);
  --btn-ghost-hover: rgba(15, 23, 42, 0.06);
  --btn-ghost-border-hover: rgba(15, 23, 42, 0.18);
  --news-row-hover-bg: rgba(15, 23, 42, 0.05);
  --modal-backdrop: rgba(15, 23, 42, 0.4);
  --modal-close-hover-bg: rgba(15, 23, 42, 0.08);
  --pill-border: rgba(196, 30, 58, 0.28);
  --skip-fg: #fff;
}

html[data-theme="dark"] {
  color-scheme: dark;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
  color: var(--color-text);
}

.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;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 2000;
  padding: 0.5rem 1rem;
  background: var(--color-accent);
  color: var(--skip-fg);
  border-radius: 6px;
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 2rem, var(--max-w));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  width: min(100% - 1.5rem, var(--max-w));
  margin-inline: auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  white-space: normal;
  min-width: 0;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--color-accent) 0%, #8b1538 50%, var(--color-blue) 100%);
  box-shadow: 0 4px 16px rgba(225, 29, 46, 0.35);
}

.logo-text small {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.logo-text small.logo-en {
  text-transform: none;
  letter-spacing: 0.02em;
  font-weight: 500;
  line-height: 1.35;
  margin-top: 0.2rem;
  max-width: 22rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-surface);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-text);
  border-radius: 1px;
  position: relative;
}

.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bar::before {
  top: -6px;
}

.nav-toggle-bar::after {
  top: 6px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
  justify-content: flex-end;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.nav-list a:hover {
  color: var(--color-text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.lang-toggle {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-surface);
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
  font-size: 0.8125rem;
  font-weight: 600;
}

.lang-toggle:hover {
  background: var(--color-surface-elevated);
  border-color: var(--hero-card-border-hover);
}

.lang-toggle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

html[lang="zh-CN"] .lang-icon-zh,
html[lang="en"] .lang-icon-en {
  display: none;
}

/* Theme toggle */
.theme-toggle {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-surface);
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}

.theme-toggle:hover {
  background: var(--color-surface-elevated);
  border-color: var(--hero-card-border-hover);
}

.theme-toggle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

html[data-theme="dark"] .theme-icon-sun {
  display: none;
}

html[data-theme="light"] .theme-icon-moon {
  display: none;
}

html[data-theme="light"] .btn-outline:hover {
  border-color: rgba(15, 23, 42, 0.22);
}

html[data-theme="light"] .btn-ghost {
  border-color: rgba(15, 23, 42, 0.18);
}

html[data-theme="light"] .tile:hover {
  border-color: rgba(15, 23, 42, 0.2);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

.btn:active {
  transform: translateY(1px);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--skip-fg);
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  color: var(--skip-fg);
}

.btn-outline {
  background: transparent;
  border-color: var(--color-border);
  color: var(--color-text);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: var(--color-surface);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
  background: var(--btn-ghost-hover);
  border-color: var(--btn-ghost-border-hover);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 900px);
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 2rem) 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    var(--hero-overlay),
    url("https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=2000&q=80") center / cover no-repeat;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-radial);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  width: min(100% - 2rem, var(--max-w));
  margin-inline: auto;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0 0 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 1.25rem;
  max-width: 18ch;
}

.hero-lead {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  max-width: 42ch;
  margin: 0 0 2rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.hero-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.hero-card {
  background: var(--hero-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.35rem;
  backdrop-filter: blur(8px);
  transition: border-color 0.2s, background 0.2s;
  box-shadow: var(--shadow-soft);
}

.hero-card:hover {
  border-color: var(--hero-card-border-hover);
  background: var(--hero-card-hover-bg);
}

.hero-card-title {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.hero-card-desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section:nth-of-type(even) {
  background: var(--color-surface);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}

.section-sub {
  margin: 0 0 2rem;
  color: var(--color-text-muted);
  max-width: 52ch;
}

/* Tiles */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.tile {
  background: var(--color-surface-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color 0.2s;
}

.tile:hover {
  border-color: rgba(255, 255, 255, 0.14);
}

.tile h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  margin: 0 0 0.5rem;
}

.tile p {
  margin: 0 0 1.25rem;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

.link-arrow {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-accent);
}

.link-arrow:hover {
  color: var(--color-accent-hover);
}

.link-arrow::after {
  content: " →";
}

/* Solutions pills */
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pill-row li {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: var(--color-accent-soft);
  border: 1px solid var(--pill-border);
  font-size: 0.875rem;
  font-weight: 500;
}

/* Products */
.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.85rem;
}

.product-card {
  min-height: 120px;
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  background: var(--product-card-gradient);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 0.2s, transform 0.2s;
}

.product-card:hover {
  border-color: var(--product-card-border-hover);
  transform: translateY(-2px);
}

.product-card-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
}

.product-card-more {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Industries */
.industries-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2.5rem;
  align-items: start;
}

.industry-tabs {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg);
}

.industry-tab {
  width: 100%;
  text-align: left;
  padding: 0.9rem 1.1rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text-muted);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-border);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.industry-tab:last-child {
  border-bottom: none;
}

.industry-tab:hover {
  background: var(--color-surface);
  color: var(--color-text);
}

.industry-tab[aria-selected="true"] {
  background: var(--color-accent-soft);
  color: var(--color-text);
  border-left: 3px solid var(--color-accent);
  padding-left: calc(1.1rem - 3px);
}

.industry-content {
  background: var(--color-surface-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  min-height: 280px;
}

.industry-active-desc {
  margin: 0 0 1.5rem;
  color: var(--color-text-muted);
  font-size: 1rem;
}

.industry-spotlight {
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.spotlight-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.spotlight-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
}

.spotlight-text {
  margin: 0 0 1rem;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

/* News */
.news-loading,
.news-error {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.news-error {
  color: #f87171;
}

.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--color-border);
}

.news-list li {
  border-bottom: 1px solid var(--color-border);
}

.news-list a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem 1.5rem;
  align-items: baseline;
  padding: 1.25rem 0;
  transition: background 0.15s;
}

@media (min-width: 640px) {
  .news-list a {
    padding: 1.25rem 1rem;
    margin: 0 -1rem;
    border-radius: var(--radius);
  }

  .news-list a:hover {
    background: var(--news-row-hover-bg);
  }
}

.news-type {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
}

.news-list time {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.news-row-text {
  min-width: 0;
}

.news-summary {
  margin: 0.4rem 0 0;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text-muted);
}

.news-headline {
  display: block;
  font-weight: 600;
}

/* News modal */
.news-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.news-modal[hidden] {
  display: none !important;
}

.news-modal-backdrop {
  position: absolute;
  inset: 0;
  background: var(--modal-backdrop);
  backdrop-filter: blur(6px);
}

.news-modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 640px);
  max-height: min(88vh, 720px);
  overflow: auto;
  padding: 1.75rem 1.75rem 2rem;
  background: var(--color-surface-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.news-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: var(--radius);
  background: transparent;
  color: var(--color-text-muted);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-modal-close:hover {
  color: var(--color-text);
  background: var(--modal-close-hover-bg);
}

.news-modal-meta {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.news-modal-dot {
  margin: 0 0.35rem;
}

.news-modal-panel h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 1.25rem;
  padding-right: 2.5rem;
}

.news-modal-body p {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--color-text);
}

.news-modal-body p:last-child {
  margin-bottom: 0;
}

.news-modal-empty {
  color: var(--color-text-muted);
  font-style: italic;
}

body.news-modal-open {
  overflow: hidden;
}

/* CTA */
.cta-band {
  background: var(--cta-bg);
  border-block: 1px solid var(--color-border);
  color: var(--cta-on-color);
}

.cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin: 0 0 0.35rem;
  color: var(--cta-on-color);
}

.cta-inner p {
  margin: 0;
  color: var(--cta-on-muted);
  max-width: 40ch;
}

/* Footer */
.site-footer {
  padding: 3.5rem 0 0;
  background: var(--footer-bg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.logo-footer .logo-text {
  font-size: 1.05rem;
  line-height: 1.35;
}

.logo-footer .logo-text small.logo-en {
  font-size: 0.7rem;
  max-width: none;
}

.footer-tagline {
  margin: 1rem 0 0;
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

.footer-heading {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin: 0 0 1rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a {
  display: block;
  padding: 0.25rem 0;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.footer-links a:hover {
  color: var(--color-text);
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding: 1.25rem 0;
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.footer-legal {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-legal a {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.footer-legal a:hover {
  color: var(--color-text);
}

/* Responsive */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .industries-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--nav-mobile-bg);
    border-bottom: 1px solid var(--color-border);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.5rem;
    gap: 1rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

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

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .nav-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-actions .btn {
    width: 100%;
  }

  .hero-cards {
    grid-template-columns: 1fr;
  }

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

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

  .news-list a {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    align-items: start;
    gap: 0.5rem 1rem;
  }

  .news-type {
    grid-column: 1;
    grid-row: 1;
  }

  .news-list time {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .news-row-text {
    grid-column: 1 / -1;
    grid-row: 2;
  }

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

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}
