/*
Theme Name: Løkken Serviceverksted
Theme URI: https://lokkenserviceverksted.no
Author: Aamot Gruppen AS
Description: Skreddersydd tema for Løkken Serviceverksted – LSV.
Version: 2.0.0
Requires at least: 6.0
Requires PHP: 8.0
Text Domain: lsv
*/

:root {
  --black: #0b0b0c;
  --ink: #151516;
  --muted: #68686d;
  --line: #dedede;
  --paper: #f3f2ef;
  --white: #ffffff;
  --red: #d30913;
  --red-dark: #a90008;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif;
}

body.admin-bar .site-header {
  top: 32px;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
  padding: 10px clamp(24px, 5vw, 76px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  width: 178px;
  height: 72px;
  align-items: center;
}

.brand img {
  width: 100%;
  max-height: 68px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 38px);
  font-size: 14px;
  font-weight: 620;
}

.nav > a:not(.button) {
  position: relative;
  padding: 12px 0;
}

.nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav > a:hover::after,
.nav > a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-button {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 2px solid var(--red);
  background: var(--red);
  color: white;
  cursor: pointer;
  font-weight: 760;
  letter-spacing: -0.01em;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  border-color: var(--red-dark);
  background: var(--red-dark);
  transform: translateY(-2px);
}

.button-small {
  min-height: 46px;
  padding: 0 22px;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 92px);
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  overflow: hidden;
  background: var(--black);
  color: white;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to right, black 0%, black 55%, transparent 95%);
}

.hero::before {
  position: absolute;
  top: -38%;
  right: 25%;
  width: 270px;
  height: 145%;
  background: var(--red);
  content: "";
  opacity: 0.92;
  transform: rotate(26deg);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  max-width: 850px;
  flex-direction: column;
  justify-content: center;
  padding: 92px 6vw 72px 8vw;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 22px;
  color: #c9c9cc;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-block;
  width: 30px;
  height: 3px;
  background: var(--red);
}

.eyebrow.dark {
  color: #55555a;
}

.eyebrow.light {
  color: #c7c7ca;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(48px, 6vw, 94px);
  font-weight: 820;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.hero h1 em {
  color: var(--red);
  font-style: normal;
}

.hero-lead {
  max-width: 650px;
  margin: 32px 0 0;
  color: #c8c8cb;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}

.text-link {
  padding: 12px 0;
  font-size: 14px;
  font-weight: 700;
}

.text-link span {
  display: inline-block;
  margin-left: 8px;
  color: var(--red);
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.hero-facts {
  display: grid;
  max-width: 700px;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 70px;
  background: #3a3a3d;
  border: 1px solid #3a3a3d;
}

.hero-facts div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 5px;
  padding: 18px 20px;
  background: #171719;
}

.hero-facts strong {
  font-size: 15px;
}

.hero-facts span {
  color: #99999e;
  font-size: 12px;
}

.hero-mark {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 560px;
  align-items: center;
  justify-content: center;
  padding: 72px 5vw;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 55%),
    #141416;
}

.hero-mark::after {
  position: absolute;
  inset: 7% 8%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  content: "";
}

.logo-plate {
  position: relative;
  z-index: 2;
  width: min(100%, 620px);
  padding: clamp(28px, 4vw, 58px);
  background: white;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.4);
  transform: rotate(-2deg);
}

.logo-plate img {
  width: 100%;
}

.quality-note {
  position: absolute;
  z-index: 3;
  right: 3vw;
  bottom: 9%;
  padding: 12px 18px;
  background: var(--red);
  color: white;
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-strip {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3.5vw, 56px);
  padding: 18px 24px;
  background: var(--red);
  color: white;
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-strip i {
  width: 6px;
  height: 6px;
  background: var(--black);
  border-radius: 50%;
}

.section {
  padding: clamp(84px, 10vw, 150px) clamp(24px, 8vw, 126px);
}

.services-section,
.pricing-section,
.process-section,
.faq-section {
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 70px;
  max-width: 1300px;
  margin: 0 auto 64px;
}

.section-heading.compact {
  grid-template-columns: 1fr;
}

.section-heading h2,
.stiga-copy h2,
.about-copy h2,
.contact-intro h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 820;
  letter-spacing: -0.055em;
  line-height: 1;
}

.section-heading > p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.service-grid {
  display: grid;
  max-width: 1300px;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin: 0 auto;
  background: #cfcfce;
  border: 1px solid #cfcfce;
}

.service-card {
  min-height: 440px;
  padding: clamp(28px, 3vw, 46px);
  background: white;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.service-card:hover {
  z-index: 2;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.1);
  transform: translateY(-8px);
}

.card-number {
  color: var(--red);
  font-family: var(--font-geist-mono), monospace;
  font-size: 13px;
  font-weight: 760;
}

.service-card h3 {
  max-width: 270px;
  margin: 64px 0 18px;
  font-size: 28px;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.service-card p {
  color: var(--muted);
  line-height: 1.7;
}

.service-card ul {
  display: grid;
  gap: 11px;
  margin: 28px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  font-weight: 620;
}

.service-card li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--red);
  content: "";
}

.stiga-section {
  position: relative;
  display: grid;
  min-height: 690px;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  overflow: hidden;
  padding: clamp(78px, 9vw, 130px) clamp(24px, 9vw, 145px);
  background: var(--red);
  color: white;
}

.stiga-accent {
  position: absolute;
  right: 43%;
  bottom: -0.2em;
  color: rgba(0, 0, 0, 0.11);
  font-size: min(66vw, 820px);
  font-weight: 900;
  letter-spacing: -0.16em;
  line-height: 0.8;
  transform: rotate(-9deg);
  user-select: none;
}

.stiga-copy,
.stiga-list {
  position: relative;
  z-index: 2;
}

.stiga-copy {
  max-width: 590px;
}

.stiga-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 28px 0 34px;
  color: #fff0f0;
  font-size: 18px;
  line-height: 1.7;
}

.button-light {
  border-color: white;
  background: white;
  color: var(--red);
}

.button-light:hover,
.button-light:focus-visible {
  border-color: var(--black);
  background: var(--black);
  color: white;
}

.stiga-list {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.stiga-list div {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  min-height: 77px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.stiga-list span {
  color: #310003;
  font-family: var(--font-geist-mono), monospace;
  font-size: 12px;
  font-weight: 800;
}

.stiga-list strong {
  font-size: clamp(18px, 2vw, 25px);
}

.pricing-section {
  border-bottom: 1px solid #d1d1cf;
}

.pricing-layout {
  display: grid;
  max-width: 1300px;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 28px;
  margin: 0 auto;
}

.price-table {
  align-self: start;
  border-top: 2px solid var(--ink);
  background: white;
}

.price-row {
  display: grid;
  min-height: 62px;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px 22px;
  border-bottom: 1px solid var(--line);
}

.price-row span { color: #3f3f43; font-size: 15px; }
.price-row strong { color: var(--ink); font-size: 16px; white-space: nowrap; }

.robot-hotel {
  position: relative;
  overflow: hidden;
  padding: clamp(32px, 4vw, 54px);
  background: var(--black);
  color: white;
}

.robot-hotel::after {
  position: absolute;
  top: -90px;
  right: -65px;
  width: 180px;
  height: 360px;
  background: var(--red);
  content: "";
  opacity: 0.85;
  transform: rotate(28deg);
}

.robot-hotel > * { position: relative; z-index: 1; }
.robot-hotel h3 { max-width: 390px; margin: 0; font-size: clamp(34px, 4vw, 52px); letter-spacing: -0.05em; line-height: 1; }
.hotel-price { margin: 24px 0 8px; color: var(--red); font-size: clamp(34px, 4vw, 48px); font-weight: 850; letter-spacing: -0.04em; }
.hotel-lead { max-width: 540px; color: #bdbdc1; line-height: 1.7; }
.robot-hotel h4 { margin: 30px 0 14px; font-size: 15px; text-transform: uppercase; }
.robot-hotel ul { display: grid; gap: 10px; margin: 0 0 30px; padding: 0; list-style: none; }
.robot-hotel li { position: relative; padding-left: 20px; color: #d1d1d4; font-size: 14px; line-height: 1.5; }
.robot-hotel li::before { position: absolute; top: 0.55em; left: 0; width: 7px; height: 7px; background: var(--red); content: ""; }

.price-notice {
  display: grid;
  max-width: 1300px;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  margin: 28px auto 0;
  padding: 24px 26px;
  border-left: 4px solid var(--red);
  background: #e7e6e2;
}

.price-notice span { color: #55555a; line-height: 1.65; }

.steps {
  display: grid;
  max-width: 1300px;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  border-top: 1px solid #c7c7c5;
}

.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 38px 36px 10px 0;
}

.step:not(:last-child) {
  margin-right: 36px;
  border-right: 1px solid #c7c7c5;
}

.step > span {
  color: var(--red);
  font-family: var(--font-geist-mono), monospace;
  font-size: 13px;
  font-weight: 800;
}

.step h3 {
  margin: 0 0 12px;
  font-size: 22px;
  letter-spacing: -0.025em;
}

.step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
  background: var(--black);
  color: white;
}

.about-logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 680px;
  padding: 7vw;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(211, 9, 19, 0.13), transparent 50%),
    #151517;
}

.about-logo::before,
.about-logo::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.1);
  content: "";
}

.about-logo::before {
  inset: 10%;
}

.about-logo::after {
  width: 52%;
  height: 160%;
  background: var(--red);
  opacity: 0.88;
  transform: rotate(28deg);
}

.about-logo img {
  position: relative;
  z-index: 2;
  width: min(100%, 500px);
  padding: 38px;
  background: white;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(78px, 9vw, 142px);
}

.about-copy > p:not(.eyebrow) {
  max-width: 670px;
  margin: 26px 0 0;
  color: #b8b8bc;
  font-size: 17px;
  line-height: 1.78;
}

.company-note {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 34px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid #3b3b3e;
}

.company-note strong {
  color: white;
}

.company-note span {
  color: #8f8f94;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
}

.faq-section .section-heading {
  display: block;
  margin: 0;
}

.faq-list {
  border-top: 1px solid #c9c9c7;
}

.faq-list details {
  border-bottom: 1px solid #c9c9c7;
}

.faq-list summary {
  display: flex;
  min-height: 83px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 720;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--red);
  font-size: 26px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 700px;
  margin: -4px 48px 24px 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(520px, 1.22fr);
  gap: clamp(50px, 8vw, 130px);
  padding: clamp(84px, 10vw, 150px) clamp(24px, 9vw, 145px);
  background: #171719;
  color: white;
}

.contact-intro > p:not(.eyebrow) {
  max-width: 520px;
  margin: 28px 0 48px;
  color: #aaaab0;
  font-size: 17px;
  line-height: 1.75;
}

.contact-detail {
  display: flex;
  max-width: 520px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 19px 0;
  border-top: 1px solid #3a3a3f;
}

.contact-detail:last-child {
  border-bottom: 1px solid #3a3a3f;
}

.contact-detail span {
  color: #85858b;
  font-size: 13px;
  text-transform: uppercase;
}

.contact-detail strong {
  text-align: right;
}

.contact-form {
  display: grid;
  gap: 22px;
  padding: clamp(28px, 4vw, 54px);
  background: white;
  color: var(--ink);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form label:not(.checkbox) {
  display: grid;
  gap: 9px;
  font-size: 13px;
  font-weight: 760;
}

.contact-form label > span {
  color: var(--red);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d5d5d5;
  border-radius: 0;
  outline: none;
  background: #f7f7f6;
  color: var(--ink);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form input,
.contact-form select {
  height: 51px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 142px;
  padding: 13px 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(211, 9, 19, 0.1);
}

.checkbox {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: #5f5f64;
  font-size: 12px;
  line-height: 1.5;
}

.checkbox input {
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: var(--red);
}

.submit-button {
  justify-self: start;
  min-width: 190px;
}

.form-message {
  margin: 0;
  padding: 14px 16px;
  border-left: 4px solid var(--red);
  background: #f4f4f2;
  color: #4d4d51;
  font-size: 13px;
  line-height: 1.55;
}

footer {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 50px;
  padding: 58px clamp(24px, 8vw, 126px) 22px;
  background: #080809;
  color: white;
}

.footer-brand img {
  width: 190px;
  padding: 12px;
  background: white;
}

.footer-brand p {
  margin: 20px 0 0;
  color: #77777d;
  font-size: 12px;
  font-weight: 730;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 10px;
  color: #85858b;
  font-size: 14px;
}

.footer-info strong {
  margin-bottom: 7px;
  color: white;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.footer-bottom {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid #29292c;
  color: #66666c;
  font-size: 12px;
}

.footer-bottom a {
  color: #a2a2a7;
}

.legal-page {
  min-height: 100vh;
  background: var(--paper);
}

.legal-header {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 10px clamp(24px, 8vw, 126px);
  border-bottom: 1px solid var(--line);
  background: white;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(76px, 10vw, 130px) 24px;
}

.legal-content h1 {
  margin: 0 0 26px;
  font-size: clamp(44px, 6vw, 76px);
  letter-spacing: -0.055em;
  line-height: 1;
}

.legal-lead {
  max-width: 760px;
  margin-bottom: 60px !important;
  color: #4f4f54 !important;
  font-size: 20px !important;
}

.legal-content h2 {
  margin: 44px 0 12px;
  font-size: 23px;
  letter-spacing: -0.025em;
}

.legal-content p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.78;
}

.legal-content .button {
  margin-top: 52px;
}

.legal-footer {
  display: flex;
  grid-template-columns: none;
  justify-content: space-between;
  padding: 26px clamp(24px, 8vw, 126px);
  color: #77777d;
  font-size: 12px;
}

@media (max-width: 1080px) {
  .site-header {
    height: 80px;
  }

  .brand {
    width: 145px;
    height: 58px;
  }

  .nav {
    gap: 18px;
    font-size: 13px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-content {
    min-height: 690px;
    padding: 90px 8vw 70px;
  }

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

  .section-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .stiga-section {
    gap: 70px;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  body.admin-bar .site-header {
    top: 46px;
  }
  .site-header {
    padding: 9px 20px;
  }

  .menu-button {
    display: grid;
    width: 46px;
    height: 46px;
    place-content: center;
    gap: 5px;
    border: 0;
    background: transparent;
  }

  .menu-button > span:not(.sr-only) {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--black);
  }

  .nav {
    position: absolute;
    top: 80px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 20px 24px;
    border-top: 1px solid #ececec;
    background: white;
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.12);
  }

  .nav-open {
    display: flex;
  }

  .nav > a:not(.button) {
    padding: 15px 2px;
    border-bottom: 1px solid #eeeeee;
  }

  .nav .button {
    margin-top: 16px;
  }

  .hero-content {
    min-height: 650px;
    padding: 76px 24px 56px;
  }

  .hero::before {
    right: -20%;
    opacity: 0.55;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }

  .hero-mark {
    min-height: 380px;
    padding: 55px 24px;
  }

  .quality-note {
    right: 18px;
    bottom: 25px;
  }

  .brand-strip {
    flex-wrap: wrap;
    gap: 11px 18px;
  }

  .brand-strip i {
    width: 4px;
    height: 4px;
  }

  .service-grid,
  .pricing-layout,
  .steps {
    grid-template-columns: 1fr;
  }

  .price-notice {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .service-card {
    min-height: auto;
  }

  .service-card h3 {
    margin-top: 38px;
  }

  .stiga-section {
    grid-template-columns: 1fr;
    gap: 62px;
  }

  .stiga-accent {
    right: -20%;
    bottom: 25%;
  }

  .step {
    padding: 30px 0;
    border-bottom: 1px solid #c7c7c5;
  }

  .step:not(:last-child) {
    margin: 0;
    border-right: 0;
  }

  .about-section {
    grid-template-columns: 1fr;
  }

  .about-logo {
    min-height: 480px;
  }

  .faq-section {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .hero h1 {
    font-size: 48px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-facts div {
    padding: 15px 16px;
  }

  .section,
  .stiga-section,
  .about-copy,
  .contact-section {
    padding: 76px 20px;
  }

  .section-heading h2,
  .stiga-copy h2,
  .about-copy h2,
  .contact-intro h2 {
    font-size: 42px;
  }

  .about-logo {
    min-height: 390px;
    padding: 42px;
  }

  .about-logo img {
    padding: 24px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 25px 20px;
  }

  .contact-detail {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .contact-detail strong {
    text-align: left;
  }

  footer {
    grid-template-columns: 1fr;
    padding: 48px 20px 22px;
  }

  .footer-brand,
  .footer-bottom {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
