/*
Theme Name: Aluminium Centre
Theme URI: https://aluminiumcentre.in
Author: ANOO CREATIONS
Author URI: https://actorramesh.com
Description: Responsive custom WordPress theme for Aluminium Centre (P) Ltd., including products, brochures, company profile, enquiry details and ANOO CREATIONS credit.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: aluminium-centre
*/

:root {
  --navy: #092238;
  --navy-deep: #061827;
  --cream: #fff7e8;
  --paper: #fffaf1;
  --orange: #f58220;
  --yellow: #f3c436;
  --teal: #1fa6bb;
  --teal-light: #d8f4f7;
  --orange-light: #ffe5ca;
  --red: #d9344a;
  --purple: #7957c8;
  --blue: #2187c8;
  --ink: #17232d;
  --muted: #687179;
  --silver: #d9dfe4;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

strong {
  font-weight: 600;
}

.sr-only {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.site-header {
  align-items: center;
  background: rgba(255, 253, 247, 0.97);
  box-shadow: 0 4px 22px rgba(9, 34, 56, 0.1);
  color: var(--navy);
  display: flex;
  height: 90px;
  justify-content: space-between;
  padding: 0 clamp(24px, 5vw, 82px);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 13px;
  letter-spacing: 0.13em;
  min-width: 310px;
}

.brand-logo {
  height: 54px;
  max-width: 315px;
  object-fit: contain;
  object-position: left center;
  width: 100%;
}

.nav {
  align-items: center;
  display: flex;
  gap: clamp(22px, 2.8vw, 46px);
}

.nav a {
  font-size: 14px;
  font-weight: 500;
  position: relative;
}

.nav a::after {
  background: var(--orange);
  bottom: -10px;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
  width: 100%;
}

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

.header-cta {
  background: var(--orange);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 20px;
}

.header-cta span {
  margin-left: 10px;
}

.menu-toggle {
  background: none;
  border: 0;
  display: none;
}

.hero {
  background: linear-gradient(90deg, #087f92 0 43%, #ffffff 43% 100%);
  color: white;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  min-height: 690px;
  overflow: hidden;
  padding: 80px clamp(24px, 5vw, 82px) 72px;
  position: relative;
}

.hero-copy,
.hero-art {
  position: relative;
  z-index: 2;
}

.hero-copy {
  align-self: center;
  max-width: 625px;
}

.eyebrow {
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  font-size: 12px;
  font-weight: 600;
  gap: 12px;
  letter-spacing: 0.17em;
  margin: 0 0 24px;
  text-transform: uppercase;
}

.eyebrow > span {
  background: var(--orange);
  height: 3px;
  width: 38px;
}

.eyebrow.dark {
  color: #737b80;
}

.hero h1 {
  font-size: clamp(58px, 6vw, 92px);
  font-weight: 300;
  letter-spacing: -0.065em;
  line-height: 0.9;
  margin: 0;
}

.hero h1 > span {
  color: #fff1d8;
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.69em;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.04em;
  margin-top: 16px;
}

.hero-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.7;
  margin: 30px 0 32px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  align-items: center;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  font-size: 15px;
  font-weight: 600;
  justify-content: center;
  min-height: 52px;
  padding: 0 25px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.button:hover,
.button:focus-visible {
  box-shadow: 0 11px 24px rgba(0, 0, 0, 0.16);
  transform: translateY(-2px);
}

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

.button-outline {
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: white;
}

.hero-note {
  align-items: center;
  color: rgba(255, 255, 255, 0.84);
  display: flex;
  font-size: 13px;
  gap: 9px;
  margin-top: 46px;
}

.hero-note strong {
  color: white;
}

.hero-art {
  align-items: center;
  display: flex;
  justify-content: center;
  min-width: 0;
  padding-top: 34px;
}

.paint {
  display: none;
}

.paint::after {
  background: inherit;
  border-radius: 50%;
  content: "";
  height: 13px;
  position: absolute;
  right: -22px;
  top: 7px;
  width: 13px;
}

.paint-one {
  background: var(--orange);
  height: 42px;
  left: 42%;
  top: 130px;
  width: 340px;
}

.paint-two {
  background: var(--teal);
  bottom: 86px;
  height: 54px;
  right: 3%;
  transform: rotate(8deg);
  width: 430px;
}

.paint-three {
  background: var(--purple);
  height: 27px;
  right: 8%;
  top: 70px;
  transform: rotate(-3deg);
  width: 210px;
}

.art-ring {
  border: 4px solid;
  border-radius: 50%;
  height: 470px;
  position: absolute;
  width: 470px;
}

.ring-one {
  border-color: rgba(243, 196, 54, 0.68);
  right: 4%;
  top: 10%;
}

.ring-two {
  border-color: rgba(217, 52, 74, 0.58);
  height: 340px;
  left: 13%;
  top: 24%;
  width: 340px;
}

.hero-feature-image {
  filter: drop-shadow(0 18px 20px rgba(25, 92, 101, 0.16));
  height: auto;
  mix-blend-mode: normal;
  object-fit: contain;
  position: relative;
  width: 109%;
  z-index: 3;
}

.hero-product-orbit {
  align-items: center;
  background: white;
  border: 1px solid rgba(9, 34, 56, 0.08);
  border-radius: 2px;
  box-shadow: 0 22px 46px rgba(40, 55, 65, 0.15);
  display: flex;
  height: min(37vw, 545px);
  justify-content: center;
  max-height: 545px;
  max-width: 700px;
  min-height: 455px;
  min-width: 540px;
  overflow: hidden;
  position: relative;
  width: min(48vw, 700px);
  z-index: 3;
}

.hero-product-orbit::before,
.hero-product-orbit::after {
  border: 3px solid;
  border-radius: 50%;
  content: "";
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.hero-product-orbit::before {
  border-color: rgba(245, 130, 32, 0.72);
  height: 330px;
  left: -75px;
  top: -92px;
  width: 330px;
}

.hero-product-orbit::after {
  border-color: rgba(31, 166, 187, 0.55);
  bottom: -125px;
  height: 390px;
  right: -105px;
  width: 390px;
}

.brochure-links {
  align-items: stretch;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: absolute;
  right: -1%;
  top: 22px;
  width: min(265px, 42%);
  z-index: 5;
}

.brochure-links > a {
  align-items: center;
  background: rgba(255, 253, 247, 0.96);
  border: 1px solid rgba(9, 34, 56, 0.12);
  box-shadow: 0 12px 28px rgba(16, 28, 37, 0.16);
  color: var(--navy);
  display: flex;
  gap: 11px;
  border-radius: 999px 8px 8px 999px;
  min-height: 62px;
  padding: 7px 36px 7px 8px;
  position: relative;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.brochure-links > a::after {
  align-items: center;
  background: var(--orange);
  border-radius: 50%;
  color: white;
  content: "↗";
  display: flex;
  font-size: 16px;
  font-weight: 900;
  height: 28px;
  justify-content: center;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
}

.brochure-links > a:hover {
  box-shadow: 0 17px 32px rgba(16, 28, 37, 0.22);
  transform: translateY(-3px);
}

.brochure-links small,
.brochure-links strong {
  display: block;
}

.brochure-links small {
  color: var(--orange);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.13em;
  margin-bottom: 3px;
  text-transform: uppercase;
}

.brochure-links strong {
  font-size: 12px;
  white-space: nowrap;
}

.line-icon {
  border: 2px solid var(--teal);
  display: block;
  flex: 0 0 48px;
  height: 48px;
  position: relative;
}

.line-icon i {
  background: var(--teal);
  display: block;
  height: 2px;
  left: 10px;
  position: absolute;
  width: 24px;
}

.line-icon i:nth-child(1) {
  top: 12px;
}

.line-icon i:nth-child(2) {
  top: 22px;
}

.line-icon i:nth-child(3) {
  top: 32px;
}

.scaffold-icon::before,
.scaffold-icon::after {
  background: var(--teal);
  content: "";
  height: 34px;
  position: absolute;
  top: 6px;
  width: 2px;
}

.scaffold-icon::before {
  left: 9px;
}

.scaffold-icon::after {
  right: 9px;
}

.ladder-icon {
  border: 0;
}

.ladder-icon::before,
.ladder-icon::after {
  background: var(--orange);
  content: "";
  height: 46px;
  position: absolute;
  top: 1px;
  transform: rotate(11deg);
  width: 3px;
}

.ladder-icon::before {
  left: 12px;
}

.ladder-icon::after {
  right: 12px;
}

.ladder-icon i {
  background: var(--orange);
  left: 11px;
  width: 26px;
}

.trust-bar {
  background: var(--paper);
  box-shadow: 0 14px 34px rgba(23, 35, 45, 0.08);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: -23px auto 0;
  max-width: 1180px;
  position: relative;
  width: calc(100% - 48px);
  z-index: 5;
}

.trust-bar > div {
  align-items: center;
  display: flex;
  gap: 17px;
  padding: 24px 30px;
}

.trust-bar > div + div {
  border-left: 1px solid #e8e2d7;
}

.trust-icon {
  align-items: center;
  border: 2px solid var(--teal);
  border-radius: 50%;
  color: var(--teal);
  display: inline-flex;
  flex: 0 0 42px;
  font-size: 18px;
  font-weight: 900;
  height: 42px;
  justify-content: center;
}

.trust-bar p,
.trust-bar strong {
  display: block;
  margin: 0;
}

.trust-bar p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.trust-bar strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
}

.section {
  margin: 0 auto;
  max-width: 1320px;
  padding: 110px clamp(24px, 5vw, 72px);
}

.products-section {
  background: var(--cream);
  max-width: none;
}

.products-section > * {
  margin-left: auto;
  margin-right: auto;
  max-width: 1180px;
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 60px;
  grid-template-columns: 1.4fr 0.6fr;
}

.section-heading h2,
.application-copy h2,
.about-card h2,
.contact-copy h2 {
  font-size: clamp(42px, 5vw, 70px);
  letter-spacing: -0.055em;
  line-height: 0.98;
  margin: 0;
  font-weight: 300;
}

.section-heading h2 em,
.application-copy h2 em,
.contact-copy h2 em {
  color: var(--orange);
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

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

.product-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 58px;
}

.product-card {
  background: white;
  border-bottom: 5px solid var(--card-accent);
  box-shadow: 0 13px 34px rgba(33, 45, 54, 0.08);
  min-height: 430px;
  overflow: hidden;
  padding: 27px;
  position: relative;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.product-card:hover {
  box-shadow: 0 19px 44px rgba(33, 45, 54, 0.14);
  transform: translateY(-6px);
}

.product-card.orange {
  --card-accent: var(--orange);
}
.product-card.teal {
  --card-accent: var(--teal);
}
.product-card.purple {
  --card-accent: var(--purple);
}
.product-card.yellow {
  --card-accent: var(--yellow);
}
.product-card.red {
  --card-accent: var(--red);
}
.product-card.blue {
  --card-accent: var(--blue);
}

.product-number {
  color: var(--card-accent);
  font-family: Georgia, serif;
  font-size: 15px;
  font-style: italic;
}

.product-image {
  background: #f3f3f1;
  border-radius: 2px;
  height: 205px;
  margin: -27px -27px 24px;
  overflow: hidden;
  position: relative;
}

.product-image::after {
  background:
    linear-gradient(104deg, transparent 0 62%, color-mix(in srgb, var(--card-accent) 32%, transparent) 62% 72%, transparent 72%),
    linear-gradient(174deg, transparent 0 76%, color-mix(in srgb, var(--card-accent) 40%, transparent) 76% 83%, transparent 83%);
  border-radius: 0;
  content: "";
  inset: 0;
  opacity: 0.72;
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

.product-image::before {
  background: var(--card-accent);
  border-radius: 70% 20% 60% 30%;
  bottom: 14px;
  content: "";
  height: 11px;
  left: -18px;
  opacity: 0.7;
  position: absolute;
  transform: rotate(-4deg);
  width: 58%;
  z-index: 3;
}

.product-image img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  width: 100%;
}

.product-card:hover .product-image img {
  transform: scale(1.04);
}

.product-card h3 {
  font-size: 24px;
  font-weight: 300;
  letter-spacing: -0.035em;
  margin: 0 0 13px;
}

.product-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.product-card a {
  bottom: 24px;
  color: var(--card-accent);
  font-size: 13px;
  font-weight: 600;
  position: absolute;
  text-transform: uppercase;
}

.product-card a span {
  margin-left: 7px;
}

.application-section {
  background: #087f92;
  color: white;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 660px;
}

.application-art {
  background:
    radial-gradient(circle at 30% 25%, rgba(243, 196, 54, 0.85) 0 7%, transparent 7.3%),
    linear-gradient(135deg, var(--teal) 0 36%, var(--orange) 36% 55%, var(--purple) 55% 75%, var(--red) 75% 100%);
  min-height: 660px;
  overflow: hidden;
  position: relative;
}

.application-art::before,
.application-art::after {
  background: rgba(255, 255, 255, 0.92);
  content: "";
  height: 110%;
  position: absolute;
  top: -5%;
  transform: rotate(16deg);
  width: 90px;
}

.application-art::before {
  left: 38%;
}

.application-art::after {
  left: 64%;
  width: 32px;
}

.brush-label {
  background: #087f92;
  bottom: 78px;
  color: white;
  font-family: Georgia, serif;
  font-size: 25px;
  font-style: italic;
  left: 9%;
  padding: 18px 24px;
  position: absolute;
  transform: rotate(-4deg);
  z-index: 4;
}

.silver-panels {
  align-items: flex-end;
  bottom: 0;
  display: flex;
  gap: 18px;
  height: 85%;
  justify-content: center;
  position: absolute;
  right: 4%;
  width: 70%;
  z-index: 3;
}

.silver-panels span {
  background: linear-gradient(100deg, #9aa2a8, #f7f8f8 35%, #aeb6bb 72%, #ecedef);
  border: 4px solid #838d94;
  box-shadow: 20px 22px 35px rgba(0, 0, 0, 0.2);
  height: 68%;
  transform: skewY(-6deg);
  width: 22%;
}

.silver-panels span:nth-child(2) {
  height: 88%;
}

.silver-panels span:nth-child(3) {
  height: 56%;
}

.application-copy {
  align-self: center;
  padding: 80px clamp(30px, 7vw, 105px);
}

.application-copy h2 em {
  color: var(--yellow);
}

.application-copy > p:not(.eyebrow) {
  color: #c5d1da;
  line-height: 1.75;
  margin: 28px 0 34px;
}

.application-list {
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.application-list > div {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  display: flex;
  gap: 22px;
  padding: 15px 0;
}

.application-list span {
  color: var(--orange);
  font-family: Georgia, serif;
  font-size: 13px;
  font-style: italic;
}

.application-list strong {
  font-size: 15px;
}

.about-section {
  align-items: center;
  display: grid;
  gap: 60px;
  grid-template-columns: 1fr 0.58fr;
}

.about-card {
  background: var(--paper);
  border-left: 8px solid var(--orange);
  box-shadow: 0 18px 50px rgba(23, 35, 45, 0.09);
  padding: clamp(38px, 6vw, 74px);
}

.about-kicker {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-card h2 {
  margin-top: 18px;
}

.about-card > p {
  color: var(--muted);
  line-height: 1.8;
  max-width: 690px;
}

.about-card > p + p {
  margin-top: 14px;
}

.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
}

.about-points span {
  background: #f3eee4;
  font-size: 13px;
  font-weight: 700;
  padding: 11px 15px;
}

.colour-stack {
  height: 390px;
  position: relative;
}

.colour-stack span {
  border-radius: 70% 20% 65% 30%;
  height: 46px;
  left: 0;
  position: absolute;
  transform: rotate(-8deg);
  width: 100%;
}

.colour-stack span:nth-child(1) {
  background: var(--teal);
  top: 62px;
}

.colour-stack span:nth-child(2) {
  background: var(--yellow);
  left: 9%;
  top: 130px;
  transform: rotate(5deg);
  width: 88%;
}

.colour-stack span:nth-child(3) {
  background: var(--red);
  top: 200px;
  transform: rotate(-2deg);
}

.colour-stack span:nth-child(4) {
  background: var(--purple);
  left: 14%;
  top: 270px;
  transform: rotate(7deg);
  width: 75%;
}

.contact-section {
  background:
    linear-gradient(105deg, #087f92 0 50%, #0b8ea0 50%),
    #087f92;
  color: white;
  display: grid;
  gap: 80px;
  grid-template-columns: 0.85fr 1.15fr;
  padding: 110px clamp(24px, 8vw, 130px);
  position: relative;
}

.contact-section::before {
  background: var(--orange);
  content: "";
  height: 22px;
  left: 43%;
  position: absolute;
  top: 18%;
  transform: rotate(-12deg);
  width: 180px;
}

.contact-copy {
  align-self: center;
}

.contact-copy h2 em {
  color: var(--yellow);
}

.contact-copy > p:not(.eyebrow) {
  color: #c0cbd3;
  line-height: 1.8;
}

.quote-form {
  background: var(--paper);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.22);
  color: var(--ink);
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
  padding: clamp(28px, 5vw, 52px);
}

.quote-form label {
  color: #4b545b;
  display: grid;
  font-size: 12px;
  font-weight: 800;
  gap: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  background: white;
  border: 1px solid #ddd8cf;
  border-radius: 0;
  color: var(--ink);
  outline: none;
  padding: 14px;
  text-transform: none;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(16, 166, 160, 0.12);
}

.quote-form textarea {
  resize: vertical;
}

.wide {
  grid-column: 1 / -1;
}

.direct-contact {
  border-top: 1px solid #ddd8cf;
  display: grid;
  gap: 16px;
  grid-template-columns: 0.7fr 1.3fr;
  padding-top: 22px;
}

.direct-contact a,
.direct-contact p {
  margin: 0;
}

.direct-contact p {
  grid-column: 1 / -1;
}

.direct-contact span,
.direct-contact strong {
  display: block;
}

.direct-contact span {
  color: var(--orange);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.direct-contact strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.5;
}

footer {
  align-items: center;
  background: #087f92;
  color: rgba(255, 255, 255, 0.82);
  display: flex;
  font-size: 12px;
  justify-content: space-between;
  padding: 34px clamp(24px, 5vw, 82px);
}

.creator-promo {
  background:
    radial-gradient(circle at 78% 28%, rgba(243, 196, 54, 0.2), transparent 21%),
    linear-gradient(118deg, #fff0de 0 57%, #1a9fb3 57.2% 100%);
  display: grid;
  gap: 75px;
  grid-template-columns: 1.35fr 0.65fr;
  min-height: 355px;
  overflow: hidden;
  padding: 48px clamp(24px, 8vw, 130px);
  position: relative;
}

.promo-copy,
.promo-signature {
  position: relative;
  z-index: 2;
}

.promo-kicker {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.promo-copy h2 {
  color: var(--navy);
  font-size: clamp(39px, 4.6vw, 58px);
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: 0.9;
  margin: 0 0 18px;
}

.promo-copy h2 span {
  color: var(--orange);
}

.promo-copy h3 {
  color: var(--ink);
  font-size: clamp(25px, 2.8vw, 37px);
  letter-spacing: -0.04em;
  line-height: 1.02;
  margin: 0;
  font-weight: 300;
}

.promo-copy h3 em {
  color: var(--teal);
  display: block;
  font-family: Georgia, serif;
  font-weight: 500;
}

.promo-copy > p:not(.promo-kicker) {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  max-width: 720px;
}

.promo-services {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 17px 0;
}

.promo-services span {
  border: 1px solid #ddd5c7;
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  padding: 7px 10px;
}

.promo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.promo-actions a {
  background: var(--navy);
  color: white;
  font-size: 13px;
  font-weight: 800;
  padding: 11px 15px;
}

.promo-actions .promo-whatsapp {
  background: var(--orange);
}

.promo-signature {
  align-self: center;
  color: white;
  padding-left: 35px;
}

.experience-number {
  color: var(--yellow);
  display: inline-block;
  font-family: Georgia, serif;
  font-size: 92px;
  font-style: italic;
  line-height: 0.75;
}

.experience-copy {
  display: inline-block;
  font-size: 13px;
  line-height: 1.3;
  margin-left: 12px;
  text-transform: uppercase;
  width: 100px;
}

.experience-copy strong {
  color: var(--orange);
  display: block;
  font-size: 21px;
}

.signature-line {
  background: var(--teal);
  height: 5px;
  margin: 20px 0 16px;
  width: 95px;
}

.promo-signature p {
  color: #b8c7d1;
  line-height: 1.7;
}

.promo-signature p strong {
  color: white;
  display: block;
  font-size: 16px;
}

.promo-signature > a {
  color: var(--yellow);
  font-size: 14px;
  font-weight: 800;
}

.promo-brush {
  border-radius: 70% 20% 60% 30%;
  height: 24px;
  position: absolute;
  transform: rotate(-8deg);
}

.brush-orange {
  background: var(--orange);
  right: 31%;
  top: 60px;
  width: 240px;
}

.brush-teal {
  background: var(--teal);
  bottom: 48px;
  left: 38%;
  transform: rotate(5deg);
  width: 350px;
}

.brush-purple {
  background: var(--purple);
  height: 15px;
  left: 3%;
  top: 38px;
  transform: rotate(-3deg);
  width: 150px;
}

.photo-credits {
  background: #076f7e;
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  line-height: 1.5;
  padding: 9px 24px;
  text-align: center;
}

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

  .menu-toggle {
    display: grid;
    gap: 5px;
    padding: 10px;
  }

  .menu-toggle > span:not(.sr-only) {
    background: var(--navy);
    height: 2px;
    width: 25px;
  }

  .nav {
    align-items: stretch;
    background: var(--navy-deep);
    color: white;
    display: none;
    flex-direction: column;
    gap: 0;
    left: 0;
    padding: 16px 24px 26px;
    position: absolute;
    right: 0;
    top: 78px;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    padding: 15px 4px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    background: linear-gradient(180deg, #087f92 0 48%, #ffffff 48% 100%);
    grid-template-columns: 1fr;
    padding-top: 65px;
  }

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

  .hero-feature-image {
    max-width: 760px;
  }

  .hero-product-orbit {
    height: 570px;
    min-height: 0;
    min-width: 0;
    width: 570px;
  }

  .brochure-links {
    left: auto;
    right: 0;
    top: 18px;
  }

  .paint-one {
    left: 5%;
    top: 56%;
  }

  .trust-bar,
  .section-heading,
  .application-section,
  .about-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .trust-bar > div + div {
    border-left: 0;
    border-top: 1px solid #e8e2d7;
  }

  .section-heading {
    gap: 24px;
  }

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

  .application-copy {
    order: -1;
  }

  .colour-stack {
    display: none;
  }

  .contact-section::before {
    left: auto;
    right: 5%;
  }

  .creator-promo {
    background:
      linear-gradient(180deg, #fff0de 0 62%, #1a9fb3 62.2% 100%);
    gap: 40px;
    grid-template-columns: 1fr;
  }

  .promo-signature {
    padding-left: 0;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 0 18px;
  }

  .brand {
    min-width: auto;
    width: 245px;
  }

  .brand-logo {
    height: 45px;
  }

  .hero {
    background: linear-gradient(180deg, #087f92 0 46%, #ffffff 46% 100%);
    grid-template-rows: minmax(0, 46%) minmax(0, 54%);
    height: calc(100svh - 78px);
    min-height: 610px;
    padding: 16px 14px 10px;
  }

  .hero-copy {
    align-self: center;
    max-width: none;
    padding: 2px 5px 8px;
  }

  .hero .eyebrow {
    font-size: 8px;
    gap: 8px;
    letter-spacing: 0.13em;
    margin-bottom: 9px;
  }

  .hero .eyebrow > span {
    height: 2px;
    width: 25px;
  }

  .hero h1 {
    font-size: clamp(40px, 12vw, 52px);
    line-height: 0.88;
  }

  .hero h1 > span {
    font-size: 0.64em;
    margin-top: 8px;
  }

  .hero-text {
    font-size: 12px;
    line-height: 1.45;
    margin: 12px 0 13px;
    max-width: 95%;
  }

  .hero-actions {
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
  }

  .hero-actions .button {
    font-size: 11px;
    min-height: 38px;
    padding: 0 14px;
    width: auto;
  }

  .hero-note {
    display: none;
  }

  .hero-art {
    align-self: stretch;
    min-height: 0;
    padding-top: 8px;
  }

  .hero-feature-image {
    width: 104%;
  }

  .hero-product-orbit {
    aspect-ratio: 1.53 / 1;
    height: auto;
    max-height: 100%;
    width: min(96vw, 430px);
  }

  .brochure-links {
    align-items: stretch;
    flex-direction: column;
    gap: 5px;
    left: auto;
    right: -3px;
    top: 4px;
    width: 172px;
  }

  .brochure-links > a {
    gap: 7px;
    min-height: 42px;
    padding: 4px 8px 4px 5px;
  }

  .brochure-links strong {
    font-size: 9px;
  }

  .brochure-links small {
    font-size: 7px;
  }

  .line-icon {
    flex-basis: 32px;
    height: 32px;
  }

  .art-ring {
    height: 290px;
    width: 290px;
  }

  .ring-two {
    height: 220px;
    width: 220px;
  }

  .trust-bar {
    margin-top: 0;
    width: calc(100% - 28px);
  }

  .section {
    padding: 76px 20px;
  }

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

  .application-copy {
    padding: 72px 22px;
  }

  .application-art,
  .application-section {
    min-height: 490px;
  }

  .about-card {
    padding: 38px 24px;
  }

  .contact-section {
    gap: 38px;
    padding: 76px 20px;
  }

  .quote-form {
    grid-template-columns: 1fr;
    padding: 26px 20px;
  }

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

  .direct-contact p {
    grid-column: auto;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .creator-promo {
    padding: 48px 20px;
  }

  .promo-copy h2 {
    font-size: 49px;
  }

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

  .promo-actions a {
    text-align: center;
  }
}

@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;
  }
}
