:root {
  --ink: #14211f;
  --muted: #5b6966;
  --line: #dfe8e5;
  --panel: #f6faf8;
  --white: #ffffff;
  --green: #16845f;
  --blue: #126fa7;
  --teal: #0b514f;
  --steel: #2f3e46;
  --warning: #a96419;
  --shadow: 0 18px 50px rgba(12, 32, 30, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

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

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

.topbar {
  background: var(--teal);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
}

.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar-links {
  display: flex;
  gap: 22px;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand-mark {
  width: 58px;
  height: 42px;
  overflow: hidden;
  border-radius: 8px;
  background: #edf6f4;
  border: 1px solid var(--line);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 24% 52%;
}

.brand-text {
  display: grid;
  line-height: 1.2;
}

.brand-text strong {
  font-size: 19px;
  letter-spacing: 0;
}

.brand-text small {
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  font-weight: 600;
  color: #263633;
}

.nav-links a:hover {
  color: var(--green);
}

.nav-cta {
  padding: 10px 16px;
  background: var(--green);
  color: white;
  border-radius: 6px;
}

.nav-links .nav-cta:hover {
  color: white;
  background: #0f6d4d;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  background: white;
  border-radius: 6px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  min-height: 690px;
  position: relative;
  display: grid;
  align-items: end;
  color: white;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 32, 31, 0.88), rgba(6, 32, 31, 0.42) 54%, rgba(6, 32, 31, 0.12)),
    linear-gradient(0deg, rgba(6, 32, 31, 0.7), rgba(6, 32, 31, 0.05) 42%),
    url("website-assets/retouched-factory-photos/workshop-equipment-hero-1920x1080.jpg") center / cover;
  transform: scale(1.01);
}

.hero-content {
  position: relative;
  padding: 110px 0 56px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #8ee0bf;
}

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

h1 {
  max-width: 850px;
  margin-bottom: 22px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.03;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.1;
  letter-spacing: 0;
}

h3 {
  line-height: 1.22;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 42px;
}

.hero-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 860px;
}

.hero-products a {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(6, 32, 31, 0.46);
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
}

.button.primary {
  background: var(--green);
  color: white;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.42);
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 180px));
  gap: 1px;
  max-width: 680px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-stats div {
  padding: 18px;
  background: rgba(6, 32, 31, 0.42);
}

.hero-stats strong {
  display: block;
  font-size: 26px;
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.section {
  padding: 92px 0;
}

.intro {
  background: var(--panel);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.intro-copy {
  font-size: 18px;
  color: var(--muted);
}

.export-markets {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.company-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0;
}

.company-facts article {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.company-facts strong {
  display: block;
  color: var(--teal);
  font-size: 22px;
  line-height: 1.15;
}

.company-facts span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.export-markets span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
}

.note,
.form-note {
  color: var(--warning);
  font-size: 14px;
  font-weight: 600;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 38px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.section-heading.compact {
  max-width: 700px;
}

.section-heading.flush {
  margin-bottom: 0;
}

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

.category-card {
  min-height: 285px;
  padding: 28px;
  border: 1px solid var(--line);
  background: white;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(12, 32, 30, 0.05);
}

.category-card span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--blue);
  font-weight: 800;
}

.category-card h3 {
  margin-bottom: 14px;
  font-size: 20px;
}

.category-card p,
.product-card p,
.app-list p,
.business-grid p,
.solution-list p,
.regional-list p,
.process-grid p,
.factory-copy p,
.site-footer p {
  color: var(--muted);
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.business-grid article {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 24px rgba(12, 32, 30, 0.05);
}

.business-grid span {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--blue);
  font-weight: 800;
}

.business-grid h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.solutions {
  background: var(--panel);
}

.solution-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 54px;
  align-items: start;
}

.solution-list {
  display: grid;
  gap: 14px;
}

.solution-list article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 24px rgba(12, 32, 30, 0.05);
}

.solution-list h3 {
  margin-bottom: 8px;
}

.solution-list a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
}

.product-section {
  background: #fbfdfc;
}

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

.home-product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 12px 28px rgba(12, 32, 30, 0.06);
}

.home-product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.home-product-card > div {
  padding: 18px;
}

.home-product-card span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-product-card h3 {
  margin: 8px 0 8px;
  font-size: 20px;
}

.home-product-card p {
  color: var(--muted);
  margin-bottom: 14px;
}

.home-product-card a {
  color: var(--green);
  font-weight: 800;
}

.compact-business,
.compact-solutions,
.compact-applications,
.compact-regional {
  display: none;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: white;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(12, 32, 30, 0.06);
}

.product-card img,
.missing-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-card > div:not(.missing-image) {
  padding: 18px;
}

.product-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.export-products {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-spec-card {
  display: grid;
  grid-template-columns: 190px 1fr;
}

.product-spec-card img {
  height: 100%;
  aspect-ratio: auto;
}

.spec-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 16px 0 0;
}

.spec-list div {
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
}

.spec-list dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.spec-list dd {
  margin: 3px 0 0;
  font-size: 13px;
  font-weight: 800;
}

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

.commercial-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 24px rgba(12, 32, 30, 0.05);
}

.commercial-grid span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.commercial-grid strong {
  display: block;
  margin: 8px 0;
  font-size: 24px;
}

.downloads {
  background: var(--panel);
}

.download-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: start;
}

.download-list {
  display: grid;
  gap: 14px;
}

.download-card {
  display: grid;
  gap: 6px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 24px rgba(12, 32, 30, 0.05);
}

.download-card strong {
  font-size: 18px;
}

.download-card span {
  color: var(--muted);
  font-size: 14px;
}

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

.case-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 12px 28px rgba(12, 32, 30, 0.06);
}

.case-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.case-card div {
  padding: 20px;
}

.case-card span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.case-card h3 {
  margin: 8px 0 10px;
  font-size: 18px;
}

.case-card p {
  color: var(--muted);
}

.product-type {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.missing-image {
  display: grid;
  place-items: center;
  background: repeating-linear-gradient(135deg, #eef4f2, #eef4f2 12px, #f8fbfa 12px, #f8fbfa 24px);
  color: var(--muted);
  font-weight: 800;
}

.applications {
  background: var(--teal);
  color: white;
}

.applications .eyebrow {
  color: #8ee0bf;
}

.applications-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
}

.applications p,
.applications .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.75);
}

.app-list {
  display: grid;
  gap: 16px;
}

.app-list article {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.app-list h3 {
  margin-bottom: 8px;
}

.factory-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 52px;
  align-items: center;
}

.projects {
  background: #fbfdfc;
}

.project-grid {
  display: grid;
  gap: 22px;
}

.project-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.project-card img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.project-content {
  padding: 36px;
}

.project-content h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.project-content p:not(.product-type) {
  color: var(--muted);
}

.project-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0 0;
}

.project-meta div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.project-meta dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.project-meta dd {
  margin: 6px 0 0;
  font-weight: 700;
}

.check-list {
  padding-left: 20px;
  color: var(--muted);
}

.check-list li + li {
  margin-top: 10px;
}

.factory-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.factory-gallery img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.factory-gallery img:first-child {
  grid-column: 1 / -1;
}

.process {
  background: var(--panel);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.process-grid div {
  padding: 24px;
  border: 1px solid var(--line);
  background: white;
  border-radius: 8px;
}

.process-grid span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 22px;
  background: #e4f3ed;
  color: var(--green);
  border-radius: 50%;
  font-weight: 800;
}

.regional {
  background: #fbfdfc;
}

.regional-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 54px;
  align-items: start;
}

.regional-grid > div:first-child p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

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

.regional-list article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 24px rgba(12, 32, 30, 0.05);
}

.regional-list span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.regional-list strong {
  display: block;
  margin: 8px 0 10px;
  font-size: 18px;
  line-height: 1.25;
}

.regional-list a {
  color: var(--green);
  font-weight: 700;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 54px;
  align-items: start;
}

.contact-card {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.contact-card p {
  margin-bottom: 10px;
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.inquiry-form .span-2,
.inquiry-form button,
.inquiry-form .form-note {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  color: #243632;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cfdcda;
  border-radius: 6px;
  padding: 12px 13px;
  font: inherit;
  color: var(--ink);
  background: white;
}

textarea {
  resize: vertical;
}

.site-footer {
  padding: 58px 0 24px;
  background: #111b1a;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 34px;
}

.site-footer h2,
.site-footer h3 {
  margin-bottom: 14px;
}

.site-footer a {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.site-footer span {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.5;
}

.site-footer a:hover {
  color: white;
}

.copyright {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: grid;
  gap: 8px;
}

.floating-actions a {
  min-width: 112px;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--teal);
  color: white;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 10px 24px rgba(12, 32, 30, 0.18);
}

.floating-actions a:first-child {
  background: #16845f;
}

.floating-actions a:last-child {
  background: #2f3e46;
}

.product-hero {
  padding: 78px 0;
  background: var(--teal);
  color: white;
}

.product-hero .eyebrow {
  color: #8ee0bf;
}

.product-hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 54px;
  align-items: center;
}

.product-hero-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.button.outline {
  border-color: var(--line);
  color: var(--teal);
  background: white;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 54px;
  align-items: start;
}

.detail-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  box-shadow: 0 10px 24px rgba(12, 32, 30, 0.05);
}

.detail-table th,
.detail-table td {
  padding: 14px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.detail-table th {
  width: 32%;
  color: var(--teal);
  background: var(--panel);
}

.commercial-note {
  margin-top: 24px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.commercial-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 18px;
}

.commercial-note p {
  color: var(--muted);
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .topbar-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 10px 0;
    gap: 6px;
  }

  .nav {
    min-height: 72px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 110px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    padding: 12px;
  }

  .hero {
    min-height: 640px;
  }

  .hero-stats,
  .hero-products,
  .intro-grid,
  .product-hero-grid,
  .product-detail-grid,
  .solution-layout,
  .applications-grid,
  .download-grid,
  .project-card,
  .factory-grid,
  .regional-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .project-card img {
    min-height: 320px;
  }

  .factory-gallery {
    grid-template-columns: 1fr;
  }

  .factory-gallery img:first-child {
    grid-column: auto;
  }

  .category-grid,
  .home-product-grid,
  .business-grid,
  .commercial-grid,
  .case-grid,
  .process-grid,
  .regional-list,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .topbar-links {
    flex-wrap: wrap;
    gap: 10px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 46px;
    height: 36px;
  }

  .brand-text small {
    display: none;
  }

  .nav-links {
    top: 104px;
    left: 14px;
    right: 14px;
  }

  .hero {
    min-height: 610px;
  }

  .hero-content {
    padding-bottom: 34px;
  }

  .hero-stats,
  .hero-products,
  .home-product-grid,
  .company-facts,
  .category-grid,
  .business-grid,
  .product-grid,
  .commercial-grid,
  .case-grid,
  .regional-list,
  .project-meta,
  .process-grid,
  .footer-grid,
  .inquiry-form {
    grid-template-columns: 1fr;
  }

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

  .product-spec-card img {
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .section {
    padding: 64px 0;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 30px;
  }

  .copyright {
    flex-direction: column;
  }

  .floating-actions {
    left: 14px;
    right: 14px;
    bottom: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .floating-actions a {
    min-width: 0;
    padding: 10px 8px;
  }
}
