/* HBV brand tokens: edit these values to update the complete website. */
@font-face {
  font-family:Roboto;
  src:url('assets/roboto-400.woff2') format('woff2');
  font-weight:400;
  font-display:swap;
}

@font-face {
  font-family:Roboto;
  src:url('assets/roboto-500.woff2') format('woff2');
  font-weight:500;
  font-display:swap;
}

@font-face {
  font-family:Roboto;
  src:url('assets/roboto-700.woff2') format('woff2');
  font-weight:700;
  font-display:swap;
}

@font-face {
  font-family:Roboto;
  src:url('assets/roboto-900.woff2') format('woff2');
  font-weight:900;
  font-display:swap;
}

:root {
  --blue:#119fca;
  --blue-ink:#007b9f;
  --yellow:#ffed25;
  --ink:#0c1112;
  --muted:#596266;
  --paper:#f3f4f3;
  --line:#dce0e0;
  --max:1240px;
}

* {
  box-sizing:border-box;
}

html {
  scroll-behavior:smooth;
  scroll-padding-top:108px;
}

body {
  margin:0;
  font-family:Roboto,Arial,sans-serif;
  color:var(--ink);
  font-size:16px;
  line-height:1.6;
  background:#fff;
}

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

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

button {
  font:inherit;
}

a,button,summary {
  -webkit-tap-highlight-color:transparent;
}

a:focus-visible,button:focus-visible,summary:focus-visible {
  outline:3px solid var(--blue-ink);
  outline-offset:5px;
}

section {
  scroll-margin-top:16px;
}

.wrap {
  width:min(var(--max),calc(100% - 96px));
  margin-inline:auto;
}

.section {
  padding-block:104px;
}

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

h1,h2,h3,h4 {
  line-height:1.12;
}

h1,h2 {
  font-weight:900;
  letter-spacing:-.035em;
}

h2 {
  font-size:clamp(2rem,3.3vw,3rem);
  margin-bottom:25px;
}

h3 {
  font-size:1.45rem;
}

p {
  margin-bottom:22px;
}

.blue-text {
  color:var(--blue-ink);
}

.eyebrow {
  font-weight:700;
  font-size:.875rem;
  letter-spacing:.13em;
  color:var(--blue-ink);
  margin-bottom:24px;
}

.eyebrow.light {
  color:#fff;
}

.intro {
  font-size:1.3rem;
  line-height:1.5;
}

.header {
  position:sticky;
  top:0;
  z-index:20;
  min-height:100px;
  padding:18px 48px;
  display:flex;
  align-items:center;
  gap:38px;
  background:#fff;
  border-bottom:1px solid #eee;
}

.logo {
  width:220px;
  flex-shrink:0;
}

.header nav {
  display:flex;
  gap:32px;
  margin-left:auto;
  font-weight:700;
}

.header nav a {
  padding-block:10px;
  font-size:.95rem;
}

.header nav a:hover,.text-link:hover {
  color:var(--blue-ink);
}

.header-phone {
  font-weight:700;
  border-left:1px solid var(--line);
  padding-left:28px;
  white-space:nowrap;
}

.header-phone span {
  color:var(--blue-ink);
  margin-right:8px;
}

.menu-toggle {
  display:none;
}

.hero {
  position:relative;
  background:var(--ink);
  color:#fff;
  overflow:hidden;
  min-height:620px;
  display:flex;
  align-items:center;
  border-bottom:10px solid transparent;
  border-image:repeating-linear-gradient(132deg,var(--yellow) 0 35px,var(--ink) 35px 70px) 10;
}

.hero-photo {
  position:absolute;
  inset:0 0 0 auto;
  width:67%;
  height:100%;
  object-fit:cover;
  object-position:65% center;
}

.hero-shape {
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,#0c1112 0%,#0c1112 52%,#0c1112c9 100%);
  --cut-top:60%;
  --cut-bottom:44%;
  --stripe-width:16px;
  clip-path:polygon(0 0,var(--cut-top) 0,var(--cut-bottom) 100%,0 100%);
}

/* Both polygons use the same endpoints, keeping the blue stripe exactly parallel. */
.hero-shape:after {
  content:'';
  position:absolute;
  inset:0;
  background:var(--blue);
  clip-path:polygon(
    calc(var(--cut-top) - var(--stripe-width)) 0,
    var(--cut-top) 0,
    var(--cut-bottom) 100%,
    calc(var(--cut-bottom) - var(--stripe-width)) 100%
  );
}

.hero-content {
  position:relative;
  z-index:1;
  padding-block:72px 100px;
}

.hero h1 {
  font-size:clamp(2.8rem,4.8vw,4.5rem);
  line-height:1.05;
  max-width:840px;
  margin-bottom:28px;
  letter-spacing:-.045em;
  text-shadow:0 2px 18px #0003;
}

.hero h1 span {
  color:var(--yellow);
}

.hero-copy {
  font-size:1.25rem;
  line-height:1.55;
  color:#e2e8e9;
  margin-bottom:32px;
}

.actions {
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:16px;
}

.button {
  min-height:52px;
  padding:14px 23px;
  display:inline-flex;
  justify-content:center;
  align-items:center;
  gap:24px;
  font-weight:700;
  font-size:.95rem;
  border:1px solid transparent;
  transition:background .2s,transform .2s;
}

.button:hover {
  transform:translateY(-2px);
}

.yellow {
  background:var(--yellow);
  color:var(--ink);
}

.yellow:hover {
  background:#ffdf00;
}

.outline {
  border-color:#ffffff85;
  color:#fff;
  background:#0c111250;
}

.outline:hover {
  background:#0c1112;
}

.dark {
  background:var(--ink);
  color:white;
}

.dark:hover {
  background:#243136;
}

.hero-bottom {
  position:absolute;
  bottom:23px;
  left:48px;
  right:48px;
  display:flex;
  justify-content:space-between;
  gap:20px;
  font-size:.75rem;
  font-weight:700;
  letter-spacing:.13em;
  text-shadow:0 1px 8px #000;
}

.brands {
  background:#e4e1df;
}

.brands-inner {
  min-height:135px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:45px;
}

.brands p {
  font-size:.82rem;
  line-height:1.5;
  letter-spacing:.07em;
  margin:0;
  min-width:180px;
}

.brands img {
  width:190px;
  max-height:72px;
  object-fit:contain;
  mix-blend-mode:multiply;
}

.sale {
  display:grid;
  grid-template-columns:1.05fr 1fr;
  gap:60px;
  align-items:center;
}

.sale-copy>p:not(.eyebrow) {
  max-width:420px;
}

.text-link {
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding-block:16px;
  border-bottom:2px solid var(--blue);
  width:fit-content;
  min-height:48px;
}

.sale .text-link {
  margin-top:30px;
}

.sale-visual {
  position:relative;
  min-width:0;
  padding-top:44px;
  background:linear-gradient(115deg,transparent 22%,var(--paper) 22%);
  align-self:stretch;
  display:flex;
  align-items:center;
}

.sale-visual img {
  position:relative;
  width:110%;
  max-width:110%;
  margin-left:-8%;
  z-index:1;
}

.big-word {
  position:absolute;
  top:15px;
  left:5%;
  font-size:clamp(4rem,7vw,6.5rem);
  font-weight:900;
  letter-spacing:-.05em;
  color:#dce0df;
}

.visual-label {
  position:absolute;
  right:0;
  bottom:0;
  background:var(--yellow);
  padding:12px 25px;
  font-size:.8rem;
  font-weight:900;
  letter-spacing:.04em;
}

.advantages {
  background:var(--ink);
  color:#fff;
  padding-block:33px;
}

.advantages-grid {
  display:grid;
  grid-template-columns:repeat(6,1fr);
}

.advantages span {
  border-left:2px solid var(--blue);
  padding:2px 20px;
  line-height:1.45;
}

.advantages strong {
  color:var(--yellow);
  font-weight:700;
}

.rental {
  background:var(--paper);
}

.section-heading {
  display:flex;
  justify-content:space-between;
  gap:30px;
  align-items:center;
  margin-bottom:45px;
}

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

.heading-aside {
  border-left:2px solid var(--blue);
  padding-left:26px;
}

.heading-aside p {
  margin:15px 0 0;
}

.edition {
  font-size:.8rem;
  font-weight:900;
  letter-spacing:.04em;
  background:var(--yellow);
  padding:8px 12px;
  display:inline-block;
}

.machine-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
  align-items:start;
}

.machine-card {
  background:#fff;
  min-width:0;
  border-bottom:4px solid var(--blue);
}

.machine-image {
  position:relative;
  height:255px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:26px 28px 10px;
}

.machine-image img {
  width:100%;
  height:100%;
  object-fit:contain;
}

.weight {
  position:absolute;
  top:17px;
  left:17px;
  font-size:.8rem;
  line-height:1;
  background:var(--yellow);
  font-weight:700;
  padding:9px 11px;
}

.machine-body {
  padding:23px 26px 27px;
}

.machine-body h3 {
  font-size:1.6rem;
  margin-bottom:12px;
}

.machine-body>p {
  font-size:.95rem;
  color:var(--muted);
  margin-bottom:18px;
}

.machine-body>.text-link {
  width:100%;
  border-bottom:0;
  padding-bottom:0;
  font-size:.95rem;
}

details {
  border-top:1px solid var(--line);
  font-size:.9rem;
}

summary {
  cursor:pointer;
  list-style:none;
  padding:16px 26px 16px 0;
  font-weight:700;
  position:relative;
  line-height:1.4;
  min-height:48px;
}

summary::-webkit-details-marker {
  display:none;
}

summary:after {
  content:'+';
  position:absolute;
  right:2px;
  top:9px;
  font-size:1.5rem;
  color:var(--blue-ink);
}

details[open]>summary:after {
  content:'−';
}

details p {
  margin-bottom:15px;
}

.spec-table {
  overflow-x:auto;
  padding-bottom:12px;
}

table {
  font-size:.8rem;
  width:100%;
  border-collapse:collapse;
  white-space:nowrap;
}

caption {
  text-align:left;
  margin-bottom:9px;
  color:var(--muted);
}

th,td {
  text-align:left;
  border-bottom:1px solid var(--line);
  padding:9px 10px;
}

th {
  background:#f3f4f3;
}

th:first-child,td:first-child {
  padding-left:5px;
}

dl {
  margin:5px 0 15px;
  font-size:.875rem;
}

dl div {
  display:flex;
  justify-content:space-between;
  gap:14px;
  padding:7px 0;
  border-bottom:1px solid var(--line);
}

dt {
  color:var(--muted);
}

dd {
  margin:0;
  text-align:right;
  font-weight:500;
}

details h4 {
  margin:16px 0 8px;
  font-size:.9rem;
}

.note {
  font-size:.8rem;
  color:var(--muted);
}

.equipment-heading {
  margin:64px 0 25px;
  display:flex;
  gap:20px;
  justify-content:space-between;
  align-items:baseline;
}

.equipment-heading h3 {
  font-weight:900;
  letter-spacing:-.02em;
  margin:0;
}

.equipment-heading p {
  margin:0;
  color:var(--muted);
}

.equipment-grid {
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:24px;
  align-items:start;
}

.equipment {
  background:#fff;
  padding:24px;
}

.equipment>img {
  height:158px;
  width:100%;
  object-fit:contain;
  margin-bottom:28px;
}

.equipment h3 {
  font-size:1.2rem;
  margin-bottom:12px;
}

.equipment>p {
  font-size:.9rem;
  color:var(--muted);
  line-height:1.5;
  margin-bottom:16px;
}

.equipment summary {
  font-size:.85rem;
}

.attachments {
  background:#fff;
  margin-top:24px;
  padding:32px;
}

.attachments-title {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  border-bottom:1px solid var(--line);
  padding-bottom:20px;
}

.attachments-title p {
  margin:0;
}

.attachments-title h3 {
  margin:0;
  font-weight:900;
}

.attachment-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  padding-top:28px;
}

.attachment-grid article {
  text-align:center;
}

.attachment-grid img {
  height:145px;
  width:100%;
  object-fit:contain;
  margin-bottom:24px;
}

.attachment-grid h4 {
  font-size:1rem;
  margin-bottom:10px;
}

.attachment-grid p {
  font-size:.9rem;
  line-height:1.5;
  color:var(--muted);
  margin-bottom:0;
}

.more-equipment {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  margin-top:24px;
}

.more-equipment article {
  padding:30px 32px;
  background:#fff;
  border-top:4px solid var(--blue);
}

.small-category {
  font-size:.75rem;
  letter-spacing:.1em;
  font-weight:700;
  color:var(--blue-ink);
}

.more-equipment h3 {
  margin:12px 0;
}

.more-equipment p {
  color:var(--muted);
}

.more-equipment dl {
  margin-bottom:0;
}

.price-strip {
  background:var(--yellow);
  padding:32px;
  margin-top:32px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
}

.price-strip h3 {
  font-size:1.25rem;
  font-weight:900;
  margin-bottom:10px;
}

.price-strip p {
  font-size:.9rem;
  margin:0;
  max-width:430px;
}

.price-strip .actions {
  justify-content:flex-end;
}

.download-link {
  font-size:.875rem;
  text-decoration:underline;
  text-underline-offset:5px;
  font-weight:700;
  padding:12px 0;
}

.service {
  display:grid;
  grid-template-columns:1fr 1fr;
  background:var(--blue);
  color:var(--ink);
}

.service-photo {
  overflow:hidden;
}

.service-photo img {
  width:100%;
  height:100%;
  object-fit:cover;
}

.service-content {
  padding:72px clamp(32px,5vw,80px);
}

.service-content h2 {
  font-size:clamp(2.4rem,3.8vw,3.6rem);
}

.service-content h2 span {
  color:#fff;
}

.service-point {
  display:flex;
  gap:22px;
  padding-block:24px;
  border-top:1px solid #ffffff60;
}

.service-point>span {
  font-size:.875rem;
  font-weight:900;
  padding-top:3px;
}

.service-point h3 {
  font-size:1.2rem;
  margin-bottom:10px;
}

.service-point p {
  margin:0;
  max-width:460px;
  line-height:1.6;
}

.service-content>.button {
  margin-top:14px;
}

.contact-top {
  display:flex;
  justify-content:space-between;
  gap:55px;
  align-items:center;
}

.contact-top h2 {
  font-size:clamp(2.5rem,4vw,3.6rem);
}

.contact-top .intro {
  font-weight:700;
  margin-bottom:10px;
}

.team-photo {
  width:210px;
  height:248px;
  object-fit:cover;
  transform:rotate(2deg);
  border-bottom:9px solid var(--yellow);
  margin-right:60px;
}

.contact-grid {
  margin-top:55px;
  border-top:1px solid var(--line);
  padding-top:30px;
  display:grid;
  grid-template-columns:1.1fr 1.15fr 1fr;
  gap:28px;
  font-size:.95rem;
}

.contact-label {
  display:block;
  font-size:.75rem;
  font-weight:700;
  letter-spacing:.1em;
  color:var(--muted);
  margin-bottom:14px;
}

.contact-phone {
  font-weight:900;
  font-size:1.6rem;
  letter-spacing:-.03em;
}

.contact-phone span {
  color:var(--blue-ink);
}

.contact-grid a:hover {
  color:var(--blue-ink);
}

.contact-grid a {
  overflow-wrap:anywhere;
}

.secondary-mail {
  display:block;
  margin-top:7px;
  font-size:.875rem;
  color:var(--muted);
}

address {
  font-style:normal;
}

footer {
  background:var(--ink);
  color:white;
  padding:32px 0;
  border-top:8px solid var(--yellow);
}

.footer-inner {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:25px;
}

.footer-brand {
  font-size:1.8rem;
  font-weight:900;
  font-style:italic;
  line-height:1.1;
}

.footer-brand span {
  display:block;
  font-style:normal;
  font-size:.8rem;
  font-weight:400;
}

.footer-inner p {
  margin:0;
  color:#aeb8bb;
  font-size:.875rem;
}

.footer-inner>a:last-child {
  font-size:.875rem;
}

.skip-link {
  position:fixed;
  top:-100px;
  left:16px;
  z-index:50;
  padding:12px 20px;
  background:var(--yellow);
}

.skip-link:focus {
  top:10px;
}

/* Tablet */
@media(max-width:1100px) {
  .header {
    padding:16px 32px;
    gap:25px;
  }

  .header nav {
    gap:22px;
  }

  .header-phone {
    display:none;
  }

  .wrap {
    width:calc(100% - 64px);
  }

  .hero-bottom {
    left:32px;
    right:32px;
  }

  .hero {
    min-height:590px;
  }

  .brands-inner {
    gap:25px;
  }

  .brands img {
    width:160px;
  }

  .sale {
    gap:25px;
  }

  .machine-image {
    height:220px;
    padding:24px 15px 8px;
  }

  .machine-body {
    padding:20px;
  }

  .equipment-grid {
    gap:16px;
  }

  .equipment {
    padding:20px;
  }

  .equipment-heading p {
    font-size:.9rem;
  }

  .advantages span {
    padding:2px 13px;
    font-size:.9rem;
  }

  .price-strip {
    align-items:flex-start;
  }

  .price-strip .actions {
    flex-direction:column;
    align-items:flex-start;
  }

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

  .contact-grid address {
    grid-column:1/-1;
  }

  .team-photo {
    margin-right:25px;
  }

}

/* Mobile: navigation and all content remain available without JavaScript. */
@media(max-width:760px) {
  html {
    scroll-padding-top:85px;
  }

  .wrap {
    width:calc(100% - 40px);
  }

  .section {
    padding-block:64px;
  }

  .header {
    padding:12px 20px;
    min-height:78px;
    flex-wrap:wrap;
    gap:10px;
  }

  .logo {
    width:165px;
  }

  .header nav {
    width:100%;
    gap:20px;
    justify-content:space-between;
    order:3;
  }

  .header nav a {
    font-size:.875rem;
    padding:8px 0;
  }

  .js .menu-toggle {
    display:flex;
    margin-left:auto;
    align-items:center;
    gap:14px;
    background:none;
    border:1px solid var(--line);
    padding:8px 12px;
    min-height:44px;
    font-weight:700;
    font-size:.875rem;
  }

  .js .header nav {
    display:none;
    padding:10px 0;
  }

  .js .header nav.is-open {
    display:flex;
  }

  .hero {
    min-height:710px;
    align-items:flex-start;
  }

  .hero-photo {
    width:100%;
    height:55%;
    top:auto;
    bottom:0;
    object-position:68% center;
  }

  .hero-shape {
    clip-path:none;
    background:linear-gradient(180deg,var(--ink) 0%,var(--ink) 46%,#0c1112c4 57%,transparent 78%);
  }

  .hero-shape:after {
    display:none;
  }

  .hero-content {
    padding-block:45px 280px;
  }

  .hero .eyebrow {
    font-size:.75rem;
    letter-spacing:.1em;
    margin-bottom:24px;
  }

  .hero h1 {
    font-size:clamp(2.2rem,7.4vw,3.6rem);
    line-height:1.08;
    margin-bottom:23px;
  }

  .hero-copy {
    font-size:1.06rem;
    margin-bottom:25px;
  }

  .hero .actions {
    gap:12px;
  }

  .button {
    padding:13px 18px;
    font-size:.875rem;
    min-height:50px;
  }

  .hero-bottom {
    left:20px;
    right:20px;
    bottom:18px;
    font-size:.65rem;
    letter-spacing:.05em;
  }

  .hero-bottom span:last-child {
    display:none;
  }

  .brands-inner {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
    padding-block:26px;
    min-height:0;
  }

  .brands p {
    grid-column:1/-1;
    text-align:center;
    font-size:.75rem;
    min-width:0;
  }

  .brands p br {
    display:none;
  }

  .brands p strong {
    margin-left:4px;
  }

  .brands img {
    width:100%;
    max-height:52px;
  }

  .sale {
    grid-template-columns:1fr;
    gap:25px;
  }

  .sale h2 {
    font-size:clamp(1.8rem,6.5vw,2.5rem);
  }

  .eyebrow {
    font-size:.8rem;
    margin-bottom:18px;
  }

  .sale .text-link {
    margin-top:15px;
  }

  .sale-visual {
    min-height:295px;
    max-width:100%;
    margin-left:10px;
    margin-right:8px;
    padding-top:40px;
  }

  .sale-visual img {
    width:100%;
    max-width:100%;
    margin-left:0;
    max-height:340px;
    object-fit:contain;
  }

  .big-word {
    font-size:4.7rem;
    top:0;
  }

  .visual-label {
    font-size:.7rem;
    padding:9px 14px;
  }

  .advantages-grid {
    grid-template-columns:repeat(3,1fr);
    gap:25px 8px;
  }

  .advantages span {
    font-size:.85rem;
    padding-left:12px;
  }

  .section-heading {
    display:block;
    margin-bottom:28px;
  }

  .section-heading h2 {
    font-size:clamp(1.8rem,6.5vw,2.5rem);
  }

  .heading-aside {
    margin-top:28px;
    padding-left:18px;
    display:flex;
    gap:20px;
    align-items:center;
    flex-wrap:wrap;
  }

  .heading-aside p {
    margin:0;
    font-size:.9rem;
  }

  .edition {
    font-size:.75rem;
    padding:7px 10px;
  }

  .machine-grid {
    grid-template-columns:1fr;
    gap:20px;
  }

  .machine-image {
    height:260px;
    padding:22px 30px 0;
  }

  .machine-body {
    padding:22px 24px;
  }

  .machine-body h3 {
    font-size:1.5rem;
  }

  .equipment-heading {
    display:block;
    margin:43px 0 23px;
  }

  .equipment-heading h3 {
    font-size:1.3rem;
    margin-bottom:10px;
  }

  .equipment-grid {
    grid-template-columns:1fr 1fr;
    gap:16px;
  }

  .equipment {
    padding:16px;
    min-width:0;
  }

  .equipment>img {
    height:128px;
    margin-bottom:20px;
  }

  .equipment h3 {
    font-size:1.1rem;
  }

  .equipment>p {
    font-size:.875rem;
  }

  .equipment dl div {
    display:block;
  }

  .equipment dd {
    text-align:left;
  }

  .attachments {
    padding:24px 20px;
  }

  .attachments-title {
    display:block;
  }

  .attachments-title h3 {
    margin-top:10px;
    font-size:1.3rem;
  }

  .attachments-title p {
    font-size:.75rem;
  }

  .attachment-grid {
    grid-template-columns:1fr 1fr;
    gap:28px 18px;
  }

  .attachment-grid img {
    height:120px;
  }

  .attachment-grid h4 {
    font-size:.95rem;
    overflow-wrap:anywhere;
  }

  .attachment-grid p {
    font-size:.85rem;
  }

  .more-equipment {
    grid-template-columns:1fr;
    gap:16px;
  }

  .more-equipment article {
    padding:26px 24px;
  }

  .price-strip {
    display:block;
    padding:26px 24px;
  }

  .price-strip h3 {
    font-size:1.15rem;
  }

  .price-strip .actions {
    margin-top:22px;
    gap:10px;
  }

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

  .service-photo {
    height:300px;
  }

  .service-photo img {
    object-position:center 56%;
  }

  .service-content {
    padding:45px 25px 50px;
  }

  .service-point {
    gap:16px;
  }

  .service-content h2 {
    font-size:2.65rem;
  }

  .contact-top {
    gap:20px;
    align-items:flex-start;
  }

  .contact-top h2 {
    font-size:clamp(1.8rem,6.3vw,2.8rem);
  }

  .contact-top .intro {
    font-size:1.15rem;
  }

  .contact-top p {
    font-size:.95rem;
  }

  .team-photo {
    width:100px;
    height:130px;
    margin:48px 0 0;
    border-bottom-width:5px;
  }

  .desktop-break {
    display:none;
  }

  .contact-grid {
    grid-template-columns:1fr;
    gap:26px;
    margin-top:28px;
    padding-top:25px;
  }

  .contact-phone {
    font-size:1.8rem;
  }

  .contact-label {
    margin-bottom:8px;
  }

  .footer-inner {
    flex-wrap:wrap;
    gap:25px;
  }

  .footer-inner p {
    order:3;
    width:100%;
    font-size:.8rem;
  }

  .footer-inner>a:last-child {
    margin-left:auto;
  }

}

@media(max-width:380px) {
  .contact-top {
    display:block;
  }

  .team-photo {
    margin:25px 0 0;
    width:135px;
    height:160px;
  }

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

  .hero {
    min-height:790px;
  }

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

  .equipment>img {
    height:180px;
  }

  .hero h1 {
    font-size:2.05rem;
  }

}

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

  .button {
    transition:none;
  }

  .button:hover {
    transform:none;
  }

}


/* Company history */
.about { background:var(--paper); }
.about-grid {
  display:grid;
  grid-template-columns:minmax(240px, .75fr) minmax(0, 1.25fr);
  align-items:center;
  gap:80px;
}
.about-visual { position:relative; max-width:380px; }
.about-visual img { width:100%; height:auto; }
.about-year {
  position:absolute;
  right:-24px;
  bottom:30px;
  padding:15px 28px;
  background:var(--yellow);
  font-size:1.3rem;
  font-weight:900;
  letter-spacing:.02em;
}
.about-copy h2 { font-size:clamp(2rem,3.1vw,2.8rem); }
.about-copy .intro { font-weight:700; }
.about-copy p:not(.eyebrow):not(.intro) { max-width:68ch; }
.footer-legal { display:flex; flex-wrap:wrap; gap:20px; font-size:.875rem; }
.footer-legal a { text-underline-offset:5px; }
.footer-legal a:hover { color:var(--yellow); text-decoration:underline; }

/* Legal pages use the same header, footer and locally hosted Roboto fonts. */
.legal-main { max-width:960px; min-height:65vh; padding-top:55px; }
.legal-back {
  display:inline-block;
  margin-bottom:40px;
  padding:8px 0;
  color:var(--blue-ink);
  font-weight:700;
}
.legal-content { max-width:80ch; overflow-wrap:anywhere; }
.legal-content h1 {
  font-size:clamp(2.2rem,5vw,4rem);
  line-height:1.12;
  margin:0 0 48px;
  padding-bottom:28px;
  border-bottom:5px solid var(--yellow);
  hyphens:auto;
}
.legal-content h2 {
  color:var(--blue-ink);
  font-size:clamp(1.4rem,2.5vw,1.85rem);
  line-height:1.3;
  margin:48px 0 24px;
  letter-spacing:-.015em;
  hyphens:auto;
}
.legal-content h3 {
  font-size:1.15rem;
  line-height:1.45;
  margin:30px 0 16px;
  hyphens:auto;
}
.legal-content p, .legal-content li { font-size:1rem; line-height:1.8; }
.legal-content p { margin:0 0 22px; }
.legal-content ul, .legal-content ol { padding-left:24px; margin-bottom:26px; }
.legal-content li { margin-bottom:8px; }
.legal-content a { color:var(--blue-ink); text-decoration:underline; text-underline-offset:3px; }
@media (max-width:1100px) {
  .about-grid { gap:45px; }
  .footer-inner { flex-wrap:wrap; }
}
@media (max-width:760px) {
  .about-grid { grid-template-columns:1fr; gap:40px; }
  .about-visual { max-width:290px; margin-inline:auto; }
  .about-year { right:-16px; bottom:24px; padding:12px 22px; }
  .about-copy h2 { font-size:clamp(1.8rem,6.5vw,2.5rem); }
  .footer-legal { order:4; width:100%; gap:24px; }
  .footer-legal a { padding:8px 0; }
  .legal-main { padding-top:32px; }
  .legal-back { margin-bottom:28px; }
  .legal-content h1 { margin-bottom:32px; }
}
