@layer reset, base, layout, components, responsive;
@layer reset {
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  body,
  h1,
  h2,
  h3,
  p,
  figure,
  dl,
  dd {
    margin: 0;
  }
  button,
  input,
  textarea,
  select {
    font: inherit;
  }
  button,
  a,
  input,
  select,
  textarea {
    -webkit-tap-highlight-color: transparent;
  }
  button {
    cursor: pointer;
  }
  img {
    display: block;
    max-width: 100%;
  }
  a {
    color: inherit;
    text-decoration: none;
  }
  button {
    color: inherit;
  }
  ul {
    padding-left: 1.2em;
  }
  button {
    border: 0;
  }
  [hidden] {
    display: none !important;
  }
}
@layer base {
  :root {
    --navy: #102c40;
    --navy-deep: #0c2232;
    --gold: #dec085;
    --gold-dark: #79602f;
    --ivory: #f8f7f3;
    --paper: #eeede7;
    --ink: #183144;
    --muted: #626b70;
    --line: #d9ddd9;
    --serif: Georgia, "Times New Roman", serif;
    --sans: "Avenir Next", Avenir, "Segoe UI", sans-serif;
    --gutter: clamp(24px, 5.6vw, 100px);
  }
  html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
  }
  body {
    background: var(--ivory);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 15px;
    line-height: 1.7;
  }
  ::selection {
    background: var(--gold);
    color: var(--navy);
  }
  :focus-visible {
    outline: 3px solid #a17b36;
    outline-offset: 5px;
  }
  h1,
  h2,
  h3 {
    font-weight: 400;
  }
  h1,
  h2 {
    font-family: var(--serif);
    line-height: 1.1;
    letter-spacing: -0.045em;
    text-wrap: balance;
  }
  h1 {
    font-size: clamp(46px, 5.5vw, 88px);
  }
  h2 {
    font-size: clamp(34px, 3.35vw, 53px);
  }
  h3 {
    font-family: var(--serif);
    font-size: 25px;
    line-height: 1.3;
  }
  em {
    font-weight: 400;
  }
  p {
    color: var(--muted);
  }
  a,
  button {
    touch-action: manipulation;
  }
  a,
  button,
  input,
  select,
  textarea {
    transition:
      color 0.2s,
      background 0.2s,
      border-color 0.2s,
      box-shadow 0.2s;
  }
  a:hover {
    color: var(--gold-dark);
  }
  button:disabled {
    cursor: default;
  }
  input,
  select,
  textarea {
    width: 100%;
    min-width: 0;
    border: 1px solid #c8cecb;
    border-radius: 0;
    background: transparent;
    padding: 13px 14px;
    color: var(--navy);
  }
  input::placeholder,
  textarea::placeholder {
    color: #727a7d;
  }
  textarea {
    resize: vertical;
    min-height: 126px;
  }
  label {
    display: block;
    font-size: 13px;
    margin-bottom: 8px;
  }
  label span {
    color: var(--muted);
    font-size: 11px;
  }
  select {
    min-height: 50px;
    appearance: none;
    -webkit-appearance: none;
    padding-right: 38px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath d='m3 5 4 4 4-4' fill='none' stroke='%23102c40' stroke-width='1.4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
  }
  button:focus-visible,
  a:focus-visible {
    border-radius: 1px;
  }
}
@layer layout {
  .topbar {
    padding: 9px var(--gutter);
    background: var(--navy);
    color: #e2e6e7;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 10px;
    letter-spacing: 0.12em;
  }
  .topbar a {
    letter-spacing: 0.03em;
  }
  .topbar a:hover {
    color: var(--gold);
  }
  .topbar a span {
    margin-left: 14px;
  }
  .site-header {
    padding: 12px var(--gutter);
    min-height: 103px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(248, 247, 243, 0.97);
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid #d9ddd97a;
    gap: 20px;
    backdrop-filter: blur(16px);
  }
  .brand {
    display: flex;
    align-items: center;
    gap: 13px;
    flex-shrink: 0;
  }
  .brand img {
    width: 70px;
    height: 70px;
    object-fit: contain;
  }
  .brand > span {
    font-family: var(--serif);
    font-size: 18px;
    letter-spacing: 0.075em;
    line-height: 1.4;
  }
  .brand small {
    display: block;
    font-family: var(--sans);
    font-size: 9px;
    letter-spacing: 0.28em;
    margin-top: 3px;
  }
  .site-header nav {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 12px;
  }
  .site-header nav > a {
    position: relative;
    padding-block: 12px;
  }
  .site-header nav > a[aria-current]::after {
    content: "";
    position: absolute;
    bottom: 3px;
    left: 0;
    width: 22px;
    height: 2px;
    background: var(--gold-dark);
  }
  .site-header .nav-cta {
    border: 1px solid #bac1c3;
    padding: 11px 16px;
    margin-left: 10px;
  }
  .nav-cta span {
    margin-left: 17px;
  }
  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 660px;
  }
  .hero-copy {
    background: var(--navy);
    padding: 66px 40px 24px var(--gutter);
    color: var(--ivory);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .hero h1 {
    font-size: clamp(51px, 5.15vw, 83px);
    margin: 28px 0 24px;
    line-height: 1.06;
  }
  .hero h1 em {
    color: var(--gold);
    font-size: 0.8em;
    white-space: nowrap;
  }
  .hero p {
    color: #c6cfd3;
    line-height: 1.8;
    font-size: 14px;
    margin-bottom: 30px;
  }
  .hero .button {
    margin-top: 4px;
  }
  .hero-footnote {
    width: 100%;
    margin-top: auto;
    padding-top: 55px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 9px;
    letter-spacing: 0.15em;
    color: #b5c3cb;
  }
  .hero-visual {
    position: relative;
    background: #eeece7;
    overflow: hidden;
    min-width: 0;
  }
  .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
  }
  .hero-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px 32px;
    background: linear-gradient(transparent, rgba(12, 34, 50, 0.84));
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    min-height: 115px;
  }
  .hero-image-caption > span {
    font-size: 9px;
    letter-spacing: 0.15em;
  }
  .hero-image-caption a {
    font-size: 12px;
    white-space: nowrap;
  }
  .hero-image-caption a:hover {
    color: var(--gold);
  }
  .hero-image-caption a span {
    margin-left: 14px;
  }
  .category-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid var(--line);
    padding: 23px var(--gutter);
    font-size: 11px;
    text-align: center;
    gap: 12px;
  }
  .category-strip span + span {
    border-left: 1px solid var(--line);
  }
  .section {
    padding: 96px var(--gutter);
  }
  .section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 42px;
  }
  .section-heading h2 {
    margin-top: 15px;
  }
  .section-heading h2 em {
    color: var(--muted);
    font-size: 0.92em;
  }
  .product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 42px 25px;
  }
  .company-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--paper);
    min-height: 610px;
  }
  .factory-image {
    position: relative;
    overflow: hidden;
    min-height: 540px;
  }
  .factory-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 45%;
    position: absolute;
  }
  .factory-image > span {
    position: absolute;
    bottom: 28px;
    left: var(--gutter);
    font-size: 10px;
    letter-spacing: 0.16em;
    color: #fff;
    background: var(--navy);
    padding: 10px 15px;
  }
  .company-preview-copy {
    align-self: center;
    padding: 70px var(--gutter) 70px 65px;
  }
  .company-preview-copy h2 {
    margin: 20px 0 26px;
  }
  .company-preview-copy p {
    font-size: 14px;
    line-height: 1.95;
    margin-bottom: 28px;
  }
  .focus-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    padding-block: 100px;
  }
  .focus-section h2 {
    margin-top: 20px;
  }
  .focus-section h2 em {
    color: var(--muted);
  }
  .large-copy {
    font-size: 19px;
    line-height: 1.8;
  }
  .focus-tags {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    border-top: 1px solid var(--line);
    margin-top: 27px;
    padding-top: 20px;
    font-size: 11px;
  }
  .focus-tags span::before {
    content: "·";
    color: var(--gold-dark);
    margin-right: 9px;
  }
  .closing-cta {
    padding: 67px var(--gutter);
    background: var(--navy);
    color: var(--ivory);
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
  }
  .closing-cta h2 {
    margin-top: 16px;
    font-size: clamp(40px, 4.3vw, 67px);
  }
  .closing-cta .eyebrow {
    color: var(--gold);
  }
  .site-footer {
    background: var(--navy-deep);
    color: #c6cfd3;
    padding: 55px var(--gutter) 20px;
    font-size: 12px;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 1.5fr 0.65fr 1fr 1.1fr;
    gap: 45px;
    padding-bottom: 50px;
  }
  .footer-brand img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    margin-bottom: 17px;
  }
  .footer-brand p {
    font-size: 11px;
    color: var(--ivory);
    margin-bottom: 7px;
  }
  .footer-brand span {
    color: #a6b5be;
    font-size: 11px;
  }
  .footer-top h3 {
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.05em;
    color: var(--gold);
    margin: 20px 0;
  }
  .footer-top a {
    display: block;
    margin-bottom: 10px;
  }
  .footer-top a:hover,
  .footer-bottom a:hover {
    color: var(--gold);
  }
  .footer-address p {
    font-size: 11px;
    color: #c6cfd3;
    overflow-wrap: anywhere;
    line-height: 2;
  }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid #ffffff21;
    font-size: 10px;
    color: #a6b5be;
  }
  .page-intro {
    padding: 65px var(--gutter) 60px;
    border-bottom: 1px solid var(--line);
  }
  .intro-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
    margin-top: 22px;
  }
  .intro-row h1 {
    font-size: clamp(43px, 5.1vw, 78px);
  }
  .intro-row h1 em {
    color: var(--gold-dark);
  }
  .intro-row > p {
    width: 290px;
    flex-shrink: 0;
    font-size: 13px;
    line-height: 1.85;
    padding-bottom: 5px;
  }
  .catalog {
    padding-top: 32px;
  }
  .catalog-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 36px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 20px;
  }
  .filters {
    display: flex;
    gap: 10px;
  }
  .catalog-count {
    font-size: 12px;
    color: var(--muted);
  }
  .catalog-question {
    border-top: 1px solid var(--line);
    margin-top: 65px;
    padding-top: 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
  }
  .catalog-question h2 {
    font-size: 33px;
  }
  .catalog-question p {
    max-width: 300px;
    font-size: 13px;
  }
  .about-images {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 20px;
    padding: 0 var(--gutter);
    margin-top: 40px;
  }
  .about-images > div {
    height: 440px;
    position: relative;
    overflow: hidden;
  }
  .about-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .about-images span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px 22px 18px;
    background: linear-gradient(transparent, rgba(12, 34, 50, 0.85));
    color: white;
    font-size: 9px;
    letter-spacing: 0.12em;
  }
  .about-detail {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
  }
  .about-sidebar h2 {
    font-size: 38px;
    margin: 20px 0 28px;
  }
  .company-content > .large-copy {
    color: var(--ink);
  }
  .activities-intro {
    margin-top: 35px;
    color: var(--ink);
    font-weight: 500;
  }
  .activities {
    list-style: none;
    padding: 0;
    margin-top: 25px;
    counter-reset: activity;
  }
  .activities > li {
    position: relative;
    padding: 25px 0 25px 45px;
    border-top: 1px solid var(--line);
    counter-increment: activity;
    color: var(--muted);
    font-size: 15px;
  }
  .activities > li::before {
    content: "0" counter(activity);
    position: absolute;
    left: 0;
    color: var(--gold-dark);
    font-size: 11px;
    top: 29px;
  }
  .activities ul {
    list-style: disc;
    line-height: 2.1;
    margin-top: 14px;
  }
  .commitment {
    border-top: 1px solid var(--line);
    padding-top: 25px;
    line-height: 1.9;
  }
  .contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 90px;
    padding-top: 65px;
  }
  .contact-details h2 {
    margin: 17px 0 30px;
  }
  .contact-details dl > div {
    padding: 19px 0;
    border-top: 1px solid var(--line);
  }
  dt {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    margin-bottom: 7px;
  }
  dd {
    font-size: 14px;
    overflow-wrap: anywhere;
  }
  dd a {
    display: inline-flex;
    gap: 25px;
    align-items: center;
  }
  .enquiry-panel {
    background: var(--paper);
    padding: 38px;
  }
  .enquiry-panel h2 {
    font-size: 37px;
    margin-top: 12px;
  }
  .enquiry-panel > p {
    font-size: 13px;
    margin: 16px 0 28px;
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .field {
    margin-bottom: 20px;
  }
  .form-note {
    font-size: 11px;
    line-height: 1.65;
    margin-bottom: 22px;
  }
  #form-status {
    border-left: 2px solid var(--gold-dark);
    padding: 14px 16px;
    background: var(--ivory);
    font-size: 13px;
    margin-top: 20px;
  }
  #form-status a {
    text-decoration: underline;
  }
  #form-status button {
    display: block;
    background: transparent;
    text-decoration: underline;
    margin-top: 10px;
    padding: 0;
    min-height: 36px;
  }
  .location-section {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 65px;
    padding: 0 var(--gutter) 100px;
    background: var(--ivory);
  }
  .location-copy {
    align-self: center;
    padding-top: 20px;
  }
  .location-copy h2 {
    margin: 17px 0 20px;
    font-size: 42px;
  }
  .location-copy > p {
    max-width: 390px;
    font-size: 13px;
    line-height: 1.9;
  }
  .location-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 28px;
  }
  .location-actions .button {
    gap: 22px;
  }
  .map-text-link {
    color: var(--gold-dark);
    font-size: 11px;
    text-decoration: underline;
    text-underline-offset: 5px;
  }
  .location-map-wrap {
    position: relative;
    min-height: 390px;
    overflow: hidden;
    background: #e8e7e1;
    border: 1px solid var(--line);
  }
  .location-map {
    display: block;
    width: 100%;
    height: 390px;
    border: 0;
    background: #e8e7e1;
  }
  .location-map-label {
    position: absolute;
    right: auto;
    bottom: 18px;
    left: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: calc(100% - 36px);
    padding: 13px 16px;
    color: var(--navy);
    font-size: 11px;
    background: rgb(248 247 243 / 95%);
    box-shadow: 0 8px 24px #102c4020;
  }
  .location-map-label strong,
  .location-map-label span {
    display: block;
  }
  .location-map-label span {
    margin-top: 3px;
    color: var(--muted);
    font-size: 10px;
  }
  .map-pin {
    position: relative;
    width: 13px;
    height: 13px;
    flex: 0 0 13px;
    border-radius: 50% 50% 50% 0;
    background: var(--gold-dark);
    transform: rotate(-45deg);
  }
  .map-pin::after {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--ivory);
    content: "";
  }
}
@layer components {
  .eyebrow {
    display: block;
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.17em;
    line-height: 1.6;
    color: var(--gold-dark);
  }
  .eyebrow.light {
    color: var(--gold);
    display: flex;
    gap: 12px;
    align-items: center;
  }
  .gold-line {
    height: 1px;
    width: 26px;
    background: var(--gold);
  }
  .button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    padding: 16px 22px;
    font-size: 12px;
    line-height: 1.4;
    min-height: 51px;
    letter-spacing: 0.02em;
  }
  .button span {
    font-size: 19px;
    line-height: 1;
  }
  .button-gold {
    background: var(--gold);
    color: var(--navy);
  }
  .button-gold:hover {
    background: #edd5a8;
    color: var(--navy);
  }
  .button-navy {
    background: var(--navy);
    color: #fff;
  }
  .button-navy:hover {
    background: #1b435e;
    color: #fff;
  }
  .text-link {
    display: inline-flex;
    align-items: center;
    gap: 30px;
    padding-bottom: 9px;
    border-bottom: 1px solid #a7afb0;
    font-size: 12px;
    white-space: nowrap;
  }
  .text-link span {
    font-size: 20px;
  }
  .product-image {
    width: 100%;
    aspect-ratio: 1/1.08;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #fff;
    overflow: hidden;
    padding: 0;
  }
  .product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.55s cubic-bezier(0.2, 0.7, 0.3, 1);
  }
  .product-card:hover .product-image img {
    transform: scale(1.045);
  }
  .image-expand {
    position: absolute;
    right: 15px;
    bottom: 15px;
    background: var(--ivory);
    color: var(--navy);
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    font-size: 20px;
    border: 1px solid var(--line);
  }
  .product-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
  }
  .product-info .eyebrow {
    font-size: 8px;
    letter-spacing: 0.13em;
    color: var(--muted);
  }
  .product-info h3 {
    margin-top: 5px;
  }
  .product-info > a {
    border: 1px solid #b8c0c1;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 20px;
  }
  .product-info > a:hover {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
  }
  .collection-note {
    font-size: 11px;
    margin-top: 30px;
    color: var(--muted);
  }
  .filter {
    padding: 10px 17px;
    background: transparent;
    font-size: 12px;
    border: 1px solid transparent;
    min-height: 44px;
  }
  .filter.active {
    background: var(--navy);
    color: #fff;
  }
  .filter:not(.active):hover {
    border-color: #b8c0c1;
  }
  .filter span {
    font-size: 9px;
    opacity: 0.7;
    margin-left: 10px;
  }
  .menu-toggle {
    display: none;
  }
  .skip-link {
    position: fixed;
    top: -100px;
    left: 20px;
    padding: 12px 20px;
    background: white;
    z-index: 100;
  }
  .skip-link:focus {
    top: 10px;
  }
  .image-dialog {
    border: 0;
    padding: 30px;
    max-width: min(850px, 92vw);
    width: 850px;
    max-height: 90dvh;
    background: var(--ivory);
    color: var(--navy);
    box-shadow: 0 20px 80px #0004;
  }
  .image-dialog::backdrop {
    background: #061623d9;
    backdrop-filter: blur(5px);
  }
  .image-dialog > img {
    width: 100%;
    height: min(66dvh, 650px);
    object-fit: contain;
  }
  .dialog-close {
    position: absolute;
    right: 12px;
    top: 10px;
    width: 44px;
    height: 44px;
    background: var(--navy);
    color: white;
    font-size: 28px;
    z-index: 1;
  }
  .dialog-caption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 22px;
  }
  .dialog-caption h2 {
    font-size: 29px;
  }
  .dialog-caption .text-link {
    white-space: normal;
    font-size: 12px;
  }
  .reveal {
    transition:
      opacity 0.65s ease,
      transform 0.65s ease;
  }
  .reveal.is-pending {
    opacity: 0;
    transform: translateY(18px);
  }
}
@layer responsive {
  @media (min-width: 1600px) {
    body {
      max-width: 1920px;
      margin: auto;
    }
    .hero {
      min-height: 780px;
    }
    .hero-copy {
      padding-top: 90px;
    }
    .hero h1 {
      font-size: 95px;
    }
  }
  @media (max-width: 1150px) {
    .site-header nav {
      gap: 18px;
    }
    .brand > span {
      font-size: 15px;
    }
    .brand img {
      width: 60px;
      height: 60px;
    }
    .site-header .nav-cta {
      margin-left: 0;
      padding: 10px;
    }
    .hero {
      min-height: 590px;
    }
    .hero-copy {
      padding-top: 45px;
    }
    .hero h1 {
      font-size: 57px;
    }
    .hero h1 em {
      font-size: 0.71em;
    }
    .hero-image-caption {
      padding-inline: 22px;
      flex-wrap: wrap;
      gap: 6px;
      align-content: end;
    }
    .company-preview-copy {
      padding: 48px;
    }
    .contact-layout {
      gap: 45px;
    }
    .intro-row {
      gap: 25px;
    }
    .intro-row > p {
      width: 255px;
    }
    .footer-top {
      gap: 25px;
    }
    .focus-section {
      gap: 40px;
    }
    .catalog-question {
      flex-wrap: wrap;
    }
  }
  @media (max-width: 900px) {
    .site-header {
      min-height: 88px;
    }
    .site-header nav {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      flex-direction: column;
      align-items: stretch;
      background: var(--ivory);
      padding: 20px var(--gutter) 28px;
      box-shadow: 0 16px 25px #102c4010;
      gap: 0;
      border-bottom: 1px solid var(--line);
    }
    .site-header nav.is-open {
      display: flex;
    }
    .site-header nav > a {
      padding: 13px 0;
    }
    .site-header nav > a[aria-current]::after {
      bottom: 7px;
    }
    .site-header .nav-cta {
      padding: 12px 16px;
      margin-top: 15px;
      display: flex;
      justify-content: space-between;
    }
    .menu-toggle {
      display: flex;
      align-items: center;
      gap: 13px;
      font-size: 12px;
      background: none;
      padding: 10px;
      min-height: 44px;
    }
    .menu-lines {
      width: 22px;
      height: 12px;
      border-top: 1px solid var(--navy);
      border-bottom: 1px solid var(--navy);
    }
    .menu-toggle[aria-expanded="true"] .menu-lines {
      border-bottom: 0;
      height: 0;
      transform: rotate(45deg);
      position: relative;
    }
    .menu-toggle[aria-expanded="true"] .menu-lines::after {
      content: "";
      width: 22px;
      border-top: 1px solid var(--navy);
      position: absolute;
      transform: rotate(90deg);
      top: -1px;
      left: 0;
    }
    .hero {
      min-height: 560px;
    }
    .hero h1 {
      font-size: 49px;
    }
    .hero-copy {
      padding-right: 24px;
    }
    .hero-footnote {
      font-size: 8px;
    }
    .hero h1 em {
      white-space: normal;
    }
    .category-strip {
      font-size: 9px;
    }
    .section {
      padding-block: 65px;
    }
    .product-grid {
      gap: 30px 20px;
    }
    .product-info h3 {
      font-size: 21px;
    }
    .product-info > a {
      width: 34px;
      height: 34px;
    }
    .company-preview-copy {
      padding: 38px;
    }
    .company-preview-copy h2 {
      font-size: 34px;
    }
    .company-preview-copy p {
      font-size: 13px;
    }
    .focus-section .large-copy {
      font-size: 16px;
    }
    .footer-top {
      grid-template-columns: 1.4fr 1fr;
      gap: 28px 50px;
    }
    .intro-row {
      align-items: start;
      flex-direction: column;
    }
    .intro-row > p {
      width: auto;
      max-width: 450px;
    }
    .about-detail {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .about-images > div {
      height: 350px;
    }
    .contact-layout {
      grid-template-columns: 1fr 1.15fr;
      gap: 30px;
    }
    .enquiry-panel {
      padding: 28px;
    }
    .form-row {
      grid-template-columns: 1fr;
      gap: 0;
    }
    .enquiry-panel h2 {
      font-size: 30px;
    }
    .location-section {
      grid-template-columns: 1fr;
      gap: 35px;
      padding-bottom: 65px;
    }
    .location-copy {
      padding-top: 0;
    }
    .location-copy h2 {
      font-size: 36px;
    }
  }
  @media (max-width: 640px) {
    :root {
      --gutter: 23px;
    }
    .topbar {
      font-size: 8px;
      padding-block: 9px;
      letter-spacing: 0.07em;
    }
    .topbar a span {
      margin-left: 4px;
    }
    .site-header {
      padding-block: 10px;
      min-height: 83px;
    }
    .brand img {
      width: 56px;
      height: 56px;
    }
    .brand {
      gap: 8px;
    }
    .brand > span {
      font-size: 14px;
      letter-spacing: 0.035em;
    }
    .brand small {
      font-size: 7px;
      letter-spacing: 0.22em;
    }
    .menu-toggle {
      padding-right: 0;
    }
    .hero {
      grid-template-columns: 1fr;
    }
    .hero-copy {
      padding: 42px var(--gutter) 25px;
      min-height: 510px;
    }
    .hero h1 {
      font-size: clamp(49px, 12vw, 70px);
      margin: 25px 0 20px;
    }
    .hero h1 em {
      font-size: 0.74em;
      white-space: nowrap;
    }
    .hero p {
      font-size: 13px;
      margin-bottom: 25px;
    }
    .hero-footnote {
      padding-top: 40px;
      font-size: 8px;
    }
    .hero-visual {
      height: 440px;
    }
    .hero-image {
      object-position: 50% 50%;
    }
    .hero-image-caption {
      flex-direction: row;
      align-items: end;
      align-content: normal;
      padding: 22px;
    }
    .hero-image-caption > span {
      font-size: 8px;
    }
    .hero-image-caption a {
      font-size: 11px;
    }
    .category-strip {
      grid-template-columns: 1fr 1fr;
      gap: 14px 0;
      padding: 20px var(--gutter);
      font-size: 9px;
    }
    .category-strip span:nth-child(3) {
      border-left: 0;
    }
    .section {
      padding-block: 55px;
    }
    .section-heading {
      flex-direction: column;
      align-items: start;
      gap: 23px;
      margin-bottom: 28px;
    }
    .section-heading h2 {
      font-size: 35px;
    }
    .product-grid {
      grid-template-columns: 1fr 1fr;
      gap: 30px 16px;
    }
    .product-image {
      aspect-ratio: 1/1.15;
    }
    .product-info {
      align-items: start;
      gap: 4px;
      padding-top: 13px;
    }
    .product-info h3 {
      font-size: 20px;
    }
    .product-info .eyebrow {
      font-size: 7px;
      letter-spacing: 0.06em;
    }
    .product-info > a {
      width: 28px;
      height: 28px;
      min-width: 28px;
      font-size: 17px;
      margin-top: 8px;
    }
    .collection-section .product-card:last-child {
      display: none;
    }
    .collection-note {
      font-size: 10px;
      line-height: 1.8;
      margin-top: 24px;
    }
    .company-preview {
      grid-template-columns: 1fr;
    }
    .factory-image {
      min-height: 430px;
    }
    .factory-image img {
      object-position: 50% 45%;
    }
    .company-preview-copy {
      padding: 40px var(--gutter) 48px;
    }
    .company-preview-copy h2 {
      font-size: 37px;
    }
    .company-preview-copy p {
      font-size: 14px;
    }
    .focus-section {
      grid-template-columns: 1fr;
      gap: 25px;
    }
    .focus-section h2 {
      font-size: 38px;
    }
    .focus-tags {
      gap: 16px;
    }
    .closing-cta {
      padding-block: 45px;
      flex-direction: column;
      align-items: start;
      gap: 28px;
    }
    .closing-cta h2 {
      font-size: 45px;
    }
    .footer-top {
      grid-template-columns: 1fr 1fr;
      gap: 28px 20px;
      padding-bottom: 35px;
    }
    .footer-brand {
      grid-column: 1/-1;
    }
    .footer-brand img {
      width: 80px;
      height: 80px;
    }
    .footer-address {
      grid-column: 1/-1;
      max-width: 330px;
    }
    .footer-top h3 {
      margin-top: 0;
    }
    .footer-bottom {
      font-size: 8px;
      align-items: start;
    }
    .footer-bottom > a {
      white-space: nowrap;
    }
    .page-intro {
      padding-block: 42px;
    }
    .intro-row {
      margin-top: 19px;
      gap: 22px;
    }
    .intro-row h1 {
      font-size: 46px;
    }
    .intro-row > p {
      font-size: 13px;
    }
    .catalog {
      padding-top: 24px;
    }
    .catalog-toolbar {
      align-items: start;
      gap: 12px;
      flex-direction: column;
      margin-bottom: 25px;
    }
    .filters {
      gap: 2px;
      width: 100%;
      justify-content: space-between;
    }
    .filter {
      padding: 9px 12px;
      font-size: 11px;
    }
    .filter span {
      margin-left: 5px;
    }
    .catalog-count {
      font-size: 10px;
      align-self: end;
    }
    .catalog-question {
      flex-direction: column;
      align-items: start;
      gap: 15px;
      margin-top: 40px;
      padding-top: 30px;
    }
    .about-images {
      padding: 0 var(--gutter);
      gap: 13px;
      grid-template-columns: 1fr;
      margin-top: 25px;
    }
    .about-images > div {
      height: 320px;
    }
    .about-images > div + div {
      height: 250px;
    }
    .about-detail {
      gap: 30px;
    }
    .about-sidebar h2 {
      font-size: 36px;
    }
    .company-content > .large-copy {
      font-size: 17px;
    }
    .activities > li {
      font-size: 14px;
      padding-left: 33px;
    }
    .commitment {
      font-size: 14px;
    }
    .contact-layout {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .enquiry-panel {
      padding: 27px 22px;
    }
    .enquiry-panel h2 {
      font-size: 32px;
    }
    .enquiry-panel .button {
      width: 100%;
    }
    .location-section {
      gap: 27px;
    }
    .location-map-wrap,
    .location-map {
      min-height: 330px;
      height: 330px;
    }
    .location-map-label {
      right: 12px;
      bottom: 12px;
      left: 12px;
    }
    .image-dialog {
      padding: 18px;
      max-width: 94vw;
    }
    .image-dialog > img {
      height: 60dvh;
    }
    .dialog-caption {
      align-items: start;
      flex-direction: column;
      gap: 12px;
    }
    .dialog-caption h2 {
      font-size: 26px;
    }
    .dialog-caption .text-link {
      font-size: 11px;
    }
  }
  @media (prefers-reduced-motion: reduce) {
    html {
      scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
      transition: none !important;
      animation: none !important;
    }
    .reveal.is-pending {
      opacity: 1;
      transform: none;
    }
    .product-card:hover .product-image img {
      transform: none;
    }
  }
}
