@font-face {
  font-family: "Lora";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/lora.woff2") format("woff2");
}
@font-face {
  font-family: "Playfair Display SC";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/playfairdisplaysc.woff2") format("woff2");
}

/* Shared layout and typography */
:root {
  --paper: #f7f8f9;
  --ink: #545454;
  --accent: #ffc46b;
  --line: #c6c6c6;
  --serif: "Lora", Georgia, serif;
  --heading: "Playfair Display SC", Georgia, serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 20px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 17px/1.65 var(--serif);
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-underline-offset: 4px;
}
a:hover {
  color: #8c580b;
}
button,
input,
textarea {
  font: inherit;
}
button,
a,
input,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
:focus-visible {
  outline: 3px solid #ad6b00;
  outline-offset: 5px;
}
button:disabled {
  cursor: default;
  opacity: 0.35;
}
[hidden] {
  display: none !important;
}
h1,
h2,
h3,
p,
ul,
figure {
  margin-top: 0;
}
h1,
h2,
h3 {
  line-height: 1.25;
}
h1 {
  margin: 0 0 32px;
  color: #202020;
  font: 700 clamp(30px, 3vw, 42px)/1.25 var(--heading);
  text-align: center;
}
h2 {
  font-size: 26px;
}
h3 {
  font-size: 20px;
}
p {
  margin-bottom: 22px;
}
address {
  font-style: normal;
}
.container {
  width: min(1290px, 90%);
  margin-inline: auto;
}
.page-content {
  padding-block: 30px 48px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 10;
  background: white;
  color: #222;
  padding: 12px 20px;
}
.skip-link:focus {
  top: 12px;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 11px 23px;
  background: var(--ink);
  color: white;
  border: 0;
  border-radius: 3px;
  font:
    600 14px/1.35 Arial,
    sans-serif;
  text-align: center;
  text-decoration: none;
}
.button:hover {
  background: #333;
  color: white;
}
.button:focus-visible {
  outline-offset: 4px;
}
.eyebrow {
  font: 700 19px/1.3 var(--heading);
  margin: 0 0 12px;
}

/* Header and mobile navigation */
.site-header {
  background: var(--ink);
  color: white;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 134px;
  gap: 40px;
}
.site-logo {
  flex: 0 0 240px;
}
.site-logo img {
  width: 240px;
  height: 103px;
  object-fit: contain;
}
.main-navigation {
  display: flex;
  align-items: center;
  gap: 10px;
}
.main-navigation a {
  display: block;
  padding: 20px 15px 14px;
  border-bottom: 3px solid transparent;
  color: white;
  text-decoration: none;
  font-weight: 700;
}
.main-navigation a:hover,
.main-navigation a[aria-current="page"] {
  border-bottom-color: var(--accent);
  color: var(--accent);
}
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid #aaa;
  border-radius: 3px;
  color: white;
  padding: 9px 14px;
  font-size: 16px;
  min-height: 44px;
}
.menu-icon {
  margin-right: 5px;
}

/* Shared footer */
.site-footer {
  background: var(--ink);
  color: white;
}
.footer-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.2fr 1.2fr;
  gap: 60px;
  padding-block: 34px 40px;
}
.site-footer h2 {
  font: 700 21px/1.3 var(--heading);
  color: var(--accent);
  margin-bottom: 26px;
}
.site-footer h3 {
  font-size: 18px;
  margin-bottom: 16px;
}
.site-footer address {
  max-width: 340px;
}
.site-footer p {
  margin-block: 22px;
}
.site-footer a:hover {
  color: var(--accent);
}
.footer-navigation {
  display: grid;
  gap: 17px;
}
.footer-navigation a {
  text-decoration: none;
}
.footer-navigation a::before {
  content: "›";
  margin-right: 14px;
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 22px;
  font:
    14px/1.7 Arial,
    sans-serif;
}
.map-link {
  font-size: 14px;
}
.copyright {
  padding: 14px 0;
  color: #666;
  background: var(--paper);
  font-size: 14px;
}
.copyright span {
  margin-left: 10px;
}

/* Homepage */
.hero img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.introduction {
  padding-top: 20px;
}
.home-page {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}
.feature-area {
  position: relative;
  isolation: isolate;
}
.feature-area::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: url("../images/home-theatre.jpg") center/cover;
  opacity: 0.13;
}
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 40px;
  padding-block: 30px;
}
.feature-row h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 16px;
}
.feature-image {
  width: 100%;
  border-radius: 26px;
}
.theatre-row {
  grid-template-columns: 1.1fr 1fr;
}
.home-brands {
  padding-block: 36px;
}
.home-brands > h2 {
  text-align: center;
  font-size: 36px;
}
.portfolio {
  background-color: #545454;
  background-image:
    linear-gradient(270deg, #545454 50%, #54545487 100%),
    url("../images/portfolio-background.jpg");
  background-position:
    center,
    left center;
  background-size:
    cover,
    50% auto;
  background-repeat: no-repeat;
  color: white;
  padding-block: 64px;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr;
  align-items: center;
  gap: 36px;
}
.portfolio h2 {
  font-size: 30px;
  margin-bottom: 18px;
}
.portfolio p {
  max-width: 230px;
  font-size: 26px;
  font-weight: bold;
  line-height: 1.3;
  margin: 0;
}
.stat {
  display: grid;
  justify-items: center;
  gap: 5px;
}
.stat strong {
  font-size: 60px;
  line-height: 1.3;
}
.stat span {
  font-weight: bold;
}
.appointment {
  padding-block: 25px;
  text-align: center;
}

/* Brand carousels: native scrolling also works without JavaScript. */
.brand-carousel {
  position: relative;
  margin-bottom: 12px;
  padding-inline: 25px;
}
.brand-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  list-style: none;
  padding: 12px 0 20px;
  margin: 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.brand-track li {
  flex: 0 0 calc((100% - 96px) / 5);
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
  scroll-snap-align: start;
}
.brand-track img {
  width: 100%;
  height: 130px;
  object-fit: contain;
}
.carousel-controls button {
  position: absolute;
  z-index: 1;
  top: 49px;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--paper);
  color: #202020;
  font:
    32px/1 Arial,
    sans-serif;
  border-radius: 50%;
}
.carousel-controls button:first-child {
  left: -19px;
}
.carousel-controls button:last-child {
  right: -19px;
}
.carousel-status {
  text-align: center;
  font:
    12px/1.5 Arial,
    sans-serif;
  color: #666;
  margin: 6px 0 0;
  min-height: 18px;
}
.brand-group > h2 {
  font: 700 30px/1.35 var(--heading);
  margin-bottom: 24px;
}
.brand-category {
  padding-bottom: 20px;
  margin-bottom: 34px;
  border-bottom: 1px solid #999;
}
.brand-category h3 {
  text-align: center;
  color: #202020;
  font-size: 26px;
  margin-bottom: 24px;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.about-points ul {
  padding-left: 25px;
  margin-bottom: 34px;
}
.about-points li {
  margin-bottom: 5px;
}
.about-feature {
  width: 100%;
  border-radius: 30px;
}
.partners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.partner {
  border-radius: 30px;
  padding: 20px;
  box-shadow: 0 0 16px #0003;
}
.partner img {
  width: 100%;
  aspect-ratio: 1.4;
  object-fit: cover;
  border-radius: 25px;
  margin-bottom: 18px;
}
.partner h2 {
  font:
    600 20px/1.4 Arial,
    sans-serif;
  margin-bottom: 15px;
}
.profile-link {
  background: #007aaf;
}
.downloads-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 28px;
}
.downloads-grid article {
  text-align: center;
}
.downloads-grid img {
  width: 100%;
  aspect-ratio: 1.4;
  object-fit: cover;
  margin-bottom: 20px;
}

/* Solutions */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 24px;
}
.solution-card {
  padding: 12px 12px 22px;
  text-align: center;
}
.solution-card:has(.download-actions) {
  box-shadow: 0 1px 12px #0003;
}
.solution-card > img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.solution-card h2 {
  font-size: 23px;
  margin: 20px 0 26px;
}
.download-actions {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 12px;
}
.download-actions .button {
  flex: 1;
  padding: 12px 10px;
}

/* Contact */
.contact-intro {
  text-align: center;
  letter-spacing: 1px;
  margin-bottom: 40px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}
.office {
  padding-bottom: 24px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.office h2 {
  margin-bottom: 14px;
}
.office address {
  max-width: 580px;
}
.office .eyebrow {
  font:
    600 14px/1.5 Arial,
    sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.location-link {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
}
.location-link img {
  width: 110px;
  height: 110px;
  flex-shrink: 0;
}
.email-contacts a,
.site-footer a {
  overflow-wrap: anywhere;
}
.enquiry {
  padding: 28px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: white;
}
.enquiry h2 {
  font: 700 30px/1.3 var(--heading);
}
.enquiry-form {
  display: grid;
  gap: 10px;
}
html:not(.js) .enquiry-form {
  display: none;
}
.enquiry-form label {
  font-weight: 700;
  font-size: 15px;
}
.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--paper);
  border: 1px solid #b7b7b7;
  border-radius: 3px;
  color: #333;
  margin-bottom: 10px;
  font:
    16px/1.5 Arial,
    sans-serif;
}
.enquiry-form textarea {
  resize: vertical;
  min-height: 130px;
}
.form-note {
  font:
    14px/1.65 Arial,
    sans-serif;
  margin: 0 0 10px;
}
.email-draft {
  padding: 16px;
  margin-top: 8px;
  background: #f5f0e5;
}
.email-draft p {
  margin-bottom: 12px;
  font-size: 15px;
}
.locations {
  padding-top: 42px;
}
.map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.map-grid figure {
  margin: 0;
}
.map-grid iframe {
  display: block;
  width: 100%;
  height: 300px;
  border: 1px solid #ddd;
  background: #e9e9e9;
}
.map-grid figcaption {
  padding-top: 10px;
  font-size: 14px;
}

@media (max-width: 1000px) {
  .header-inner {
    gap: 20px;
  }
  .site-logo {
    flex-basis: 200px;
  }
  .site-logo img {
    width: 200px;
  }
  .main-navigation {
    gap: 0;
  }
  .main-navigation a {
    padding-inline: 11px;
  }
  .footer-grid {
    gap: 30px;
  }
  .brand-track li {
    flex-basis: calc((100% - 48px) / 3);
  }
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    gap: 30px;
  }
  .partners {
    grid-template-columns: 1fr;
  }
  .portfolio-grid {
    gap: 18px;
  }
}
@media (max-width: 760px) {
  body {
    font-size: 16px;
  }
  .container {
    width: 90%;
  }
  .header-inner {
    flex-wrap: wrap;
    min-height: 104px;
    gap: 0 16px;
    padding-block: 8px;
  }
  .site-logo {
    flex-basis: 180px;
  }
  .site-logo img {
    width: 180px;
    height: 78px;
  }
  .js .menu-toggle {
    display: block;
  }
  .main-navigation {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
  .js .main-navigation:not(.is-open) {
    display: none;
  }
  .main-navigation a {
    padding: 12px 10px;
    border-bottom: 1px solid #777;
  }
  .main-navigation a[aria-current="page"] {
    border-bottom-color: var(--accent);
  }
  .feature-row,
  .theatre-row,
  .about-grid,
  .downloads-grid,
  .contact-grid,
  .footer-grid,
  .map-grid {
    grid-template-columns: 1fr;
  }
  .feature-row {
    gap: 22px;
    padding-block: 22px;
  }
  .feature-row h2,
  .home-brands > h2 {
    font-size: 30px;
  }
  .theatre-row .feature-image {
    grid-row: 1;
  }
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 12px;
  }
  .portfolio-grid > div:first-child {
    grid-column: 1/-1;
    text-align: center;
  }
  .portfolio p {
    max-width: none;
    font-size: 22px;
  }
  .stat strong {
    font-size: 40px;
  }
  .stat span {
    font-size: 13px;
  }
  .brand-track {
    gap: 20px;
  }
  .brand-track li {
    flex-basis: calc((100% - 20px) / 2);
  }
  .brand-track img {
    height: 100px;
  }
  .carousel-controls button {
    top: 35px;
  }
  .brand-group > h2 {
    font-size: 25px;
  }
  .brand-category h3 {
    font-size: 21px;
  }
  .brand-category {
    margin-bottom: 25px;
  }
  .partners {
    grid-template-columns: 1fr 1fr;
  }
  .partner {
    padding: 15px;
  }
  .partner h2 {
    font-size: 17px;
  }
  .footer-grid {
    gap: 32px;
  }
  .footer-grid section {
    border-bottom: 1px solid #777;
    padding-bottom: 25px;
  }
  .footer-grid section:last-child {
    border: 0;
    padding-bottom: 0;
  }
  .site-footer h2 {
    margin-bottom: 20px;
  }
  .copyright span {
    display: block;
    margin: 4px 0 0;
  }
  .enquiry {
    padding: 24px;
  }
  .page-content {
    padding-block: 26px 36px;
  }
}
@media (max-width: 480px) {
  .site-logo {
    flex-basis: 150px;
  }
  .site-logo img {
    width: 150px;
    height: auto;
  }
  .header-inner {
    gap: 0 8px;
  }
  .download-actions {
    flex-direction: column;
  }
  .partners {
    grid-template-columns: 1fr;
  }
  .solutions-grid {
    grid-template-columns: 1fr;
  }
  .partners {
    gap: 12px;
  }
  .partner {
    border-radius: 18px;
    padding: 12px;
  }
  .partner img {
    border-radius: 14px;
  }
  .profile-link {
    font-size: 12px;
    padding: 10px;
  }
  .eyebrow {
    font-size: 16px;
  }
  .enquiry {
    padding: 20px;
  }
  .brand-carousel {
    padding-inline: 18px;
  }
  .carousel-controls button:first-child {
    left: -15px;
  }
  .carousel-controls button:last-child {
    right: -15px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation: none !important;
    transition: none !important;
  }
}
