@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/montserrat-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --red: #c92d24;
  --red-dark: #aa201a;
  --ink: #171717;
  --muted: #707070;
  --line: #d8d8d8;
  --paper: #ffffff;
  --content: 1200px;
  --narrow: 1024px;
  --header-height: 104px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.lightbox-is-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  border-radius: 0;
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  transform: translateY(-180%);
  background: #000;
  color: #fff;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.985);
  transition: box-shadow 250ms ease;
}

.site-header.is-scrolled,
.site-header.menu-is-open {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.header-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 150px 210px 1fr 110px;
  align-items: center;
  width: 100%;
  height: var(--header-height);
  margin: 0 auto;
  padding: 0 50px;
  background: #fff;
}

.menu-toggle {
  display: grid;
  gap: 4px;
  align-content: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 7px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 3px;
  background: #111;
  transition: transform 220ms ease, opacity 220ms ease, background-color 220ms ease;
}

.menu-is-open .menu-toggle span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.menu-is-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-is-open .menu-toggle span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.header-logo {
  justify-self: center;
  width: 140px;
  height: 70px;
  overflow: hidden;
}

.header-logo img,
.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-tagline {
  margin: 0;
  text-align: center;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 2.7px;
  line-height: 1.2;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  transition: transform 180ms ease, background-color 180ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  transform: translateY(-2px);
  background: var(--red-dark);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.main-nav {
  position: absolute;
  top: var(--header-height);
  left: 0;
  z-index: 1;
  display: flex;
  justify-content: center;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  background: var(--red);
  color: #fff;
  opacity: 0;
  transform: translateY(-12px);
  transition: max-height 320ms ease, opacity 220ms ease, transform 320ms ease;
}

.menu-is-open .main-nav {
  max-height: 180px;
  opacity: 1;
  transform: translateY(0);
}

.main-nav a {
  padding: 31px clamp(24px, 4vw, 58px);
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 1.5px;
  text-align: center;
  text-transform: uppercase;
  transition: background-color 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(0, 0, 0, 0.12);
}

.home-intro,
.model-heading,
.page-heading {
  display: flex;
  align-items: center;
  width: min(calc(100% - 80px), var(--content));
  min-height: 240px;
  margin: 0 auto 44px;
  border-bottom: 1px solid #202020;
}

.home-intro h1 {
  margin: 0;
  color: #eeeeee;
  font-size: clamp(54px, 7vw, 94px);
  font-weight: 100;
  letter-spacing: 7px;
  line-height: 0.95;
  text-transform: uppercase;
}

.home-intro h1 span {
  display: block;
}

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

.hero-slider {
  position: relative;
  width: min(calc(100% - 128px), 1152px);
  height: 600px;
  margin: 0 auto 105px;
}

.slides,
.slide {
  position: absolute;
  inset: 0;
}

.slide {
  pointer-events: none;
  opacity: 0;
  transition: opacity 850ms ease;
}

.slide.is-active {
  z-index: 1;
  pointer-events: auto;
  opacity: 1;
}

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

.slide a {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(360px, 45%);
  min-height: 68px;
  padding: 18px 24px;
  background: #fff;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.5px;
  text-align: center;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 48px;
  height: 64px;
  padding: 0;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 50px;
  font-weight: 200;
  line-height: 1;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.42);
}

.slider-previous {
  left: 8px;
}

.slider-next {
  right: 8px;
}

.slider-dots {
  position: absolute;
  bottom: -31px;
  left: 50%;
  z-index: 5;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.slider-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #d1d1d1;
}

.slider-dots button[aria-current="true"] {
  background: #111;
}

.specialist {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
  width: min(calc(100% - 80px), var(--narrow));
  margin: 0 auto 110px;
}

.specialist-copy {
  padding: 0 24px;
  border-left: 1px solid #1c1c1c;
}

.specialist h2 {
  margin: -6px 0 24px;
  font-size: clamp(30px, 3.1vw, 41px);
  font-weight: 300;
  letter-spacing: 0.4px;
  line-height: 0.92;
  text-transform: uppercase;
}

.specialist h2 span {
  display: block;
  color: var(--red);
}

.specialist p {
  margin-bottom: 17px;
  color: #666;
  font-size: 14px;
  line-height: 1.45;
  text-align: justify;
}

.specialist > img {
  width: 100%;
  aspect-ratio: 1.5;
  object-fit: cover;
}

.programmes {
  width: min(calc(100% - 80px), 1005px);
  margin: 0 auto 100px;
}

.section-kicker {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 45px;
  align-items: center;
  margin: 0 10% 70px;
}

.section-kicker h2 {
  margin: 0;
  font-size: 34px;
  font-weight: 300;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.section-kicker h2 span {
  color: var(--red);
}

.section-kicker i {
  display: block;
  height: 1px;
  background: #666;
}

.programme-group {
  margin-bottom: 72px;
}

.programme-group h3 {
  margin: 0 12px 14px;
  font-size: 33px;
  font-weight: 300;
  line-height: 1.1;
}

.programme-group > p {
  margin: 0 12px 23px;
  color: #6d6d6d;
  font-size: 14px;
  line-height: 1.45;
}

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

.programme-columns-scavolini .programme-card:nth-child(1) { grid-column: 1; grid-row: 1; }
.programme-columns-scavolini .programme-card:nth-child(2) { grid-column: 1; grid-row: 2; }
.programme-columns-scavolini .programme-card:nth-child(3) { grid-column: 1; grid-row: 3; }
.programme-columns-scavolini .programme-card:nth-child(4) { grid-column: 1; grid-row: 4; }
.programme-columns-scavolini .programme-card:nth-child(5) { grid-column: 2; grid-row: 1; }
.programme-columns-scavolini .programme-card:nth-child(6) { grid-column: 2; grid-row: 2; }
.programme-columns-scavolini .programme-card:nth-child(7) { grid-column: 2; grid-row: 3; }
.programme-columns-scavolini .programme-card:nth-child(8) { grid-column: 3; grid-row: 1; }
.programme-columns-scavolini .programme-card:nth-child(9) { grid-column: 3; grid-row: 2; }
.programme-columns-scavolini .programme-card:nth-child(10) { grid-column: 3; grid-row: 3; }

.programme-columns-basic .programme-card:nth-child(1) { grid-column: 1; grid-row: 1; }
.programme-columns-basic .programme-card:nth-child(2) { grid-column: 1; grid-row: 2; }
.programme-columns-basic .programme-card:nth-child(3) { grid-column: 2; grid-row: 1; }
.programme-columns-basic .programme-card:nth-child(4) { grid-column: 3; grid-row: 1; }

.programme-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #111;
}

.programme-card a {
  position: relative;
  display: block;
  aspect-ratio: 563 / 343;
  overflow: hidden;
}

.programme-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.74;
  transform: scale(1.002);
  transition: opacity 360ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0, 1);
}

.programme-card span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  color: #fff;
  font-size: clamp(17px, 2vw, 25px);
  font-weight: 600;
  line-height: 1.05;
  text-align: center;
}

.programme-card a:hover img,
.programme-card a:focus-visible img {
  opacity: 0.92;
  transform: scale(1.055);
}

.quote-cta {
  display: grid;
  place-items: center;
  min-height: 245px;
  padding: 50px 20px;
  background: var(--red);
  color: #fff;
  text-align: center;
}

.quote-cta p {
  margin: 0;
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 200;
  letter-spacing: 2px;
  line-height: 1;
  text-transform: uppercase;
}

.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  min-height: 47px;
  padding: 10px 24px;
  border: 1px solid currentColor;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease;
}

.quote-cta .outline-button:hover,
.quote-cta .outline-button:focus-visible {
  background: #fff;
  color: var(--red);
}

.instagram-line {
  padding: 38px 20px;
  text-align: center;
}

.instagram-line p {
  margin: 0;
  font-size: 15px;
}

.instagram-line a {
  color: var(--red);
}

.site-footer {
  width: min(calc(100% - 80px), var(--content));
  margin: 0 auto;
  padding: 60px 10px 28px;
  border-top: 1px solid #777;
}

.footer-newsletter {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 100px;
  align-items: center;
  padding: 0 0 42px;
  border-bottom: 1px solid var(--line);
}

.footer-logo {
  width: 115px;
  height: 57px;
  overflow: hidden;
}

.newsletter-form {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 175px;
  gap: 20px;
}

.newsletter-form input,
.newsletter-form button {
  min-height: 48px;
}

.newsletter-form input {
  width: 100%;
  padding: 0 18px;
  border: 1px solid #dedede;
  border-radius: 28px;
  outline: none;
}

.newsletter-form input:focus {
  border-color: var(--red);
}

.newsletter-form button {
  border: 0;
  border-radius: 28px;
  background: var(--red);
  color: #fff;
  transition: background-color 180ms ease;
}

.newsletter-form button:hover,
.newsletter-form button:focus-visible {
  background: var(--red-dark);
}

.newsletter-form button span {
  padding-left: 8px;
  font-size: 23px;
}

.footer-meta {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 45px;
  align-items: end;
  padding: 55px 10px 20px;
}

.footer-meta p {
  margin: 0;
  font-size: 14px;
  line-height: 1.25;
}

.footer-meta p:last-child {
  text-align: right;
}

.footer-meta a:hover,
.footer-meta a:focus-visible,
.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--red);
}

.footer-legal {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  color: #777;
  font-size: 11px;
}

.model-heading,
.page-heading {
  min-height: 250px;
}

.model-heading h1,
.page-heading h1 {
  margin: 0;
  font-size: clamp(42px, 5.2vw, 70px);
  font-weight: 200;
  letter-spacing: 1.5px;
  line-height: 0.96;
  text-transform: uppercase;
}

.model-heading h1 span,
.model-heading h1 em,
.page-heading h1 span {
  display: block;
}

.model-heading h1 em,
.page-heading h1 span {
  color: var(--red);
  font-style: normal;
}

.model-hero {
  width: min(calc(100% - 128px), 1152px);
  height: 540px;
  margin: 0 auto 100px;
  overflow: hidden;
}

.model-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.model-story {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 70px;
  width: min(calc(100% - 80px), var(--narrow));
  margin: 0 auto 85px;
}

.model-story h2 {
  margin: 0;
  padding: 0 0 0 24px;
  border-left: 1px solid #111;
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 300;
  line-height: 1.05;
}

.model-story h2::first-letter {
  color: var(--red);
}

.model-copy p {
  margin: 0 0 18px;
  color: #5d5d5d;
  line-height: 1.65;
  text-align: justify;
}

.model-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: min(calc(100% - 80px), 1152px);
  margin: 0 auto 100px;
}

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #111;
}

.model-gallery .gallery-item {
  aspect-ratio: 16 / 9;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 300ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0, 1);
}

.gallery-item span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  transform: translate(-50%, -50%) scale(0.8);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  color: #fff;
  font-size: 30px;
  font-weight: 200;
  opacity: 0;
  transition: opacity 220ms ease, transform 220ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  opacity: 0.72;
  transform: scale(1.04);
}

.gallery-item:hover span,
.gallery-item:focus-visible span {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.realisations-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: min(calc(100% - 120px), 1160px);
  margin: 0 auto 140px;
}

.realisations-gallery .gallery-item {
  aspect-ratio: 4 / 3;
}

.contact-hero {
  position: relative;
  width: min(calc(100% - 128px), 1152px);
  margin: 0 auto 80px;
  padding-top: 230px;
}

.contact-hero-image {
  width: 100%;
  height: 520px;
  background: url("/assets/media/heroes/cuisine-diesel-scavolini.jpg") center / cover no-repeat;
}

.contact-hero h1 {
  position: absolute;
  top: 78px;
  left: 0;
  z-index: 2;
  margin: 0;
  font-size: clamp(38px, 5vw, 67px);
  font-weight: 200;
  letter-spacing: 1px;
  line-height: 1.02;
  text-transform: uppercase;
}

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

.contact-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  width: min(calc(100% - 80px), 960px);
  margin: 0 auto 105px;
  text-align: center;
}

.contact-details article {
  min-height: 130px;
  padding: 25px 18px;
  border-top: 1px solid #222;
  border-bottom: 1px solid var(--line);
}

.contact-details h2 {
  margin-bottom: 15px;
  color: var(--red);
  font-size: 22px;
  font-weight: 400;
}

.contact-details p {
  margin: 0;
}

.contact-form-section {
  width: min(calc(100% - 80px), 920px);
  margin: 0 auto 110px;
}

.contact-form-section > h2 {
  margin-bottom: 42px;
  font-size: 38px;
  font-weight: 300;
  text-align: center;
}

.contact-form {
  display: grid;
  gap: 27px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 27px 32px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #444;
  font-size: 13px;
  font-weight: 400;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d7d7d7;
  outline: none;
  background: #fff;
  transition: border-color 180ms ease;
}

.contact-form input {
  min-height: 50px;
  padding: 10px 14px;
}

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

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--red);
}

.contact-form input[type="file"] {
  padding: 12px;
  border-style: dashed;
}

.contact-form button[type="submit"] {
  justify-self: center;
  min-width: 165px;
  min-height: 50px;
  padding: 11px 26px;
  border: 0;
  background: var(--red);
  color: #fff;
  text-transform: uppercase;
  transition: background-color 180ms ease;
}

.contact-form button[type="submit"]:hover,
.contact-form button[type="submit"]:focus-visible {
  background: var(--red-dark);
}

.legal-content {
  width: min(calc(100% - 80px), 900px);
  margin: 0 auto;
  padding: 100px 0 120px;
}

.legal-content h1 {
  margin: 0 0 75px;
  padding-bottom: 28px;
  border-bottom: 1px solid #222;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 200;
  line-height: 1.05;
  text-transform: uppercase;
}

.legal-content section {
  margin-bottom: 42px;
}

.legal-content h2 {
  color: var(--red);
  font-size: 22px;
  font-weight: 400;
}

.legal-content p {
  color: #555;
}

.legal-content a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.message-panel {
  display: grid;
  justify-items: start;
  width: min(calc(100% - 80px), 880px);
  min-height: 560px;
  margin: 0 auto;
  padding: 115px 0;
}

.message-panel .eyebrow {
  margin: 0 0 20px;
  color: var(--red);
  font-size: 20px;
  text-transform: uppercase;
}

.message-panel h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(42px, 6vw, 74px);
  font-weight: 200;
  line-height: 1.03;
}

.message-panel p:not(.eyebrow) {
  margin-bottom: 35px;
}

.lightbox {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: rgba(0, 0, 0, 0.94);
  color: #fff;
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.94);
}

.lightbox figure {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  justify-items: center;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 55px 85px 28px;
}

.lightbox figure img {
  max-width: 100%;
  max-height: calc(100vh - 115px);
  object-fit: contain;
}

.lightbox figcaption {
  min-height: 32px;
  padding-top: 12px;
  color: #cfcfcf;
  font-size: 12px;
  text-align: center;
}

.lightbox-close,
.lightbox-arrow {
  position: absolute;
  z-index: 2;
  border: 0;
  background: transparent;
  color: #fff;
}

.lightbox-close {
  top: 15px;
  right: 22px;
  width: 45px;
  height: 45px;
  font-size: 42px;
  font-weight: 200;
  line-height: 1;
}

.lightbox-arrow {
  top: 50%;
  width: 65px;
  height: 90px;
  transform: translateY(-50%);
  font-size: 72px;
  font-weight: 100;
  line-height: 1;
}

.lightbox-previous {
  left: 8px;
}

.lightbox-next {
  right: 8px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 750ms ease, transform 750ms cubic-bezier(0.2, 0.7, 0, 1);
}

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

@media (max-width: 900px) {
  :root {
    --header-height: 108px;
  }

  .header-row {
    grid-template-columns: 56px 1fr 56px;
    padding: 0 30px;
  }

  .header-logo {
    grid-column: 2;
    width: 70px;
    height: 35px;
  }

  .header-tagline {
    display: none;
  }

  .social-links {
    grid-column: 3;
    grid-row: 1;
    flex-direction: column;
    gap: 2px;
    align-items: center;
  }

  .social-links a {
    width: 24px;
    height: 24px;
  }

  .social-links svg {
    width: 15px;
    height: 15px;
  }

  .menu-is-open .main-nav {
    max-height: 410px;
  }

  .main-nav {
    flex-direction: column;
  }

  .main-nav a {
    padding: 24px 20px;
    font-size: 27px;
  }

  .home-intro,
  .model-heading,
  .page-heading {
    width: calc(100% - 40px);
  }

  .home-intro {
    min-height: 285px;
    margin-bottom: 45px;
  }

  .home-intro h1 {
    font-size: 40px;
    letter-spacing: 2px;
    line-height: 1;
  }

  .hero-slider {
    width: calc(100% - 40px);
    height: 452px;
    margin-bottom: 115px;
  }

  .slide img {
    object-position: center;
  }

  .slide a {
    bottom: -48px;
    width: calc(100% - 30px);
    min-height: 64px;
    font-size: 14px;
  }

  .slider-dots {
    bottom: -83px;
  }

  .specialist {
    grid-template-columns: 1fr;
    width: calc(100% - 40px);
    margin-bottom: 90px;
  }

  .specialist-copy {
    padding: 0 0 0 19px;
  }

  .specialist p {
    text-align: left;
  }

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

  .section-kicker {
    gap: 22px;
    margin: 0 0 55px;
  }

  .section-kicker h2 {
    font-size: 27px;
  }

  .programme-group h3,
  .programme-group > p {
    margin-left: 0;
    margin-right: 0;
  }

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

  .programme-columns .programme-card {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .footer-newsletter {
    grid-template-columns: 170px 1fr;
    gap: 35px;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .footer-meta {
    gap: 25px;
  }

  .model-heading,
  .page-heading {
    min-height: 225px;
  }

  .model-hero {
    width: calc(100% - 40px);
    height: 500px;
  }

  .model-story {
    grid-template-columns: 1fr;
    gap: 38px;
    width: calc(100% - 40px);
  }

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

  .realisations-gallery {
    grid-template-columns: repeat(2, 1fr);
    width: calc(100% - 40px);
  }

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

  .contact-details,
  .contact-form-section {
    width: calc(100% - 40px);
  }
}

@media (max-width: 620px) {
  body {
    font-size: 14px;
  }

  .header-row {
    padding: 0 30px;
  }

  .menu-toggle {
    justify-self: start;
  }

  .main-nav a {
    padding: 23px 12px;
    font-size: 26px;
    letter-spacing: 1px;
  }

  .home-intro {
    align-items: flex-start;
    min-height: 280px;
    padding-top: 42px;
  }

  .home-intro h1 span:first-child {
    max-width: 350px;
  }

  .hero-slider {
    height: 452px;
  }

  .specialist {
    gap: 25px;
  }

  .specialist h2 {
    font-size: 33px;
  }

  .specialist > img {
    aspect-ratio: 1.5;
  }

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

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

  .programme-card {
    margin-bottom: 0;
  }

  .programme-card span {
    font-size: 24px;
  }

  .quote-cta {
    min-height: 225px;
  }

  .quote-cta p {
    font-size: 36px;
  }

  .site-footer {
    width: calc(100% - 40px);
    padding-top: 44px;
  }

  .footer-newsletter {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-logo {
    width: 90px;
    height: 45px;
  }

  .newsletter-form {
    gap: 12px;
  }

  .newsletter-form button {
    width: 170px;
  }

  .footer-meta {
    grid-template-columns: 1fr;
    padding-top: 38px;
  }

  .footer-meta p:last-child {
    text-align: left;
  }

  .footer-legal {
    flex-direction: column;
    justify-content: flex-start;
    gap: 5px;
    margin-top: 18px;
  }

  .model-heading,
  .page-heading {
    align-items: flex-start;
    min-height: 260px;
    padding-top: 58px;
  }

  .model-heading h1,
  .page-heading h1 {
    font-size: 41px;
  }

  .model-hero {
    height: 450px;
    margin-bottom: 75px;
  }

  .model-story {
    margin-bottom: 60px;
  }

  .model-story h2 {
    padding-left: 18px;
    font-size: 31px;
  }

  .model-copy p {
    text-align: left;
  }

  .model-gallery {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 75px;
  }

  .realisations-gallery {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 90px;
  }

  .contact-hero {
    margin-bottom: 55px;
    padding-top: 230px;
  }

  .contact-hero-image {
    height: 430px;
  }

  .contact-hero h1 {
    top: 58px;
    font-size: 39px;
  }

  .contact-details {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 75px;
  }

  .contact-details article {
    min-height: 0;
  }

  .contact-form-section {
    margin-bottom: 80px;
  }

  .contact-form-section > h2 {
    font-size: 31px;
  }

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

  .legal-content {
    width: calc(100% - 40px);
    padding: 65px 0 90px;
  }

  .legal-content h1 {
    margin-bottom: 55px;
    font-size: 40px;
  }

  .message-panel {
    width: calc(100% - 40px);
    padding: 80px 0;
  }

  .lightbox figure {
    padding: 52px 16px 24px;
  }

  .lightbox-arrow {
    top: auto;
    bottom: 15px;
    width: 50px;
    height: 50px;
    transform: none;
    font-size: 52px;
  }

  .lightbox-previous {
    left: 16px;
  }

  .lightbox-next {
    right: 16px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
