:root {
  --ink: #242a27;
  --muted: #596b62;
  --paper: #fafafa;
  --surface: #eeeeee;
  --line: #d8d8d8;
  --gold: #8a5e28;
  --dark: #173b32;
  --page-width: 1440px;
  --page-gutter: clamp(20px, 4.7vw, 72px);
  font-family: Manrope, "Helvetica Neue", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}
::selection {
  background: #d5e2d9;
  color: var(--dark);
}
input,
textarea {
  caret-color: var(--dark);
}
a {
  color: inherit;
  text-underline-offset: 5px;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  line-height: 1.15;
  font-weight: 500;
  color: var(--dark);
}
h1 {
  font-size: clamp(36px, 4.4vw, 64px);
  letter-spacing: -0.035em;
  margin-bottom: 22px;
}
h2 {
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.035em;
}
h3 {
  font-size: 20px;
  letter-spacing: -0.015em;
}
p {
  color: var(--muted);
}
[hidden] {
  display: none !important;
}
.skip {
  position: absolute;
  top: -100px;
  left: 12px;
  background: white;
  padding: 12px;
  z-index: 20;
}
.skip:focus {
  top: 8px;
}
.announcement {
  text-align: center;
  background: var(--dark);
  color: #fff;
  padding: 8px 16px;
  font-size: 12px;
}
.header {
  max-width: var(--page-width);
  margin: auto;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 14px var(--page-gutter);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  font-size: 23px;
  letter-spacing: -0.7px;
  white-space: nowrap;
}
.brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}
.header nav {
  display: flex;
  gap: 25px;
  margin-left: auto;
}
.header nav a,
.cart-link {
  font-size: 14px;
  text-decoration: none;
}
.header nav a:hover,
.header nav a[aria-current] {
  text-decoration: underline;
}
.cart-link {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  border-left: 1px solid var(--line);
  padding-left: 24px;
}
.cart-link span {
  font-size: 12px;
  background: var(--dark);
  color: white;
  min-width: 24px;
  text-align: center;
  padding: 2px 4px;
}
.menu-toggle {
  display: none;
}
.hero {
  display: grid;
  grid-template-columns: 46.5% 53.5%;
  max-width: var(--page-width);
  margin: auto;
  min-height: 400px;
  border-bottom: 1px solid var(--line);
}
.hero-copy {
  padding: 42px 8% 42px 10%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
.hero h1 {
  font-size: clamp(42px, 4.2vw, 60px);
  line-height: 1.04;
}
.hero p {
  max-width: 420px;
  margin-bottom: 24px;
  font-size: 16px;
}
.button {
  background: var(--dark);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 48px;
  padding: 13px 24px;
  border: 1px solid var(--dark);
  border-radius: 0;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
}
.button:hover {
  background: #364e42;
}
.button.secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.button.secondary:hover {
  background: var(--surface);
}
.text-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 14px;
}
.hero-image {
  position: relative;
  min-height: 0;
  overflow: hidden;
}
.hero-image > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-caption {
  position: absolute;
  bottom: 20px;
  left: 24px;
  background: var(--paper);
  padding: 12px 18px;
  font-size: 13px;
  text-decoration: none;
}
.section {
  max-width: var(--page-width);
  margin: auto;
  padding: 40px var(--page-gutter);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: baseline;
  margin-bottom: 24px;
}
.section-heading h2 {
  margin-bottom: 8px;
}
.section-heading p {
  margin: 0;
}
.section-heading > a {
  font-size: 14px;
  white-space: nowrap;
}
.collections {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.collection {
  text-decoration: none;
  display: grid;
  grid-template-columns: 43% minmax(0, 1fr);
  grid-template-rows: 1fr 1fr;
  column-gap: 18px;
  background: var(--surface);
  padding-right: 16px;
}
.collection img {
  width: 100%;
  grid-row: 1 / 3;
  height: 100%;
  min-height: 160px;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--surface);
}
.collection h3 {
  margin: 18px 0 8px;
  align-self: end;
  display: flex;
  justify-content: space-between;
  font-size: 20px;
}
.collection p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 18px;
}
.featured {
  border-top: 1px solid var(--line);
}
.featured .product-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.featured .product-card {
  display: grid;
  grid-template-columns: 38% minmax(0, 1fr);
  column-gap: 20px;
  padding: 16px;
  border: 1px solid var(--line);
}
.featured .product-image {
  grid-row: 1 / 5;
  align-self: center;
}
.featured .product-image img {
  aspect-ratio: 1;
  object-fit: contain;
}
.featured .card-meta {
  margin-top: 0;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 38px 24px;
}
.product-image {
  display: block;
  background: var(--surface);
  overflow: hidden;
}
.product-image img {
  width: 100%;
  aspect-ratio: 1.08;
  object-fit: cover;
}
.product-card a {
  text-decoration: none;
}
.product-card a:hover {
  text-decoration: underline;
}
.card-meta {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
  margin: 14px 0 9px;
}
.product-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.card-size {
  font-size: 14px;
  min-height: 38px;
  margin-bottom: 12px;
}
.card-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
  font-size: 16px;
  font-variant-numeric: tabular-nums;
}
.card-bottom small {
  font-size: 12px;
  color: var(--muted);
}
.card-bottom > a {
  font-size: 14px;
}
.how {
  margin-top: 0;
  margin-bottom: 0;
  background: var(--surface);
  display: grid;
  grid-template-columns: 1fr 2.3fr;
  gap: 5%;
}
.how h2 {
  font-size: 26px;
}
.how > div > p {
  max-width: 350px;
}
.how ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  list-style-position: inside;
  padding: 0;
  margin: 0;
}
.how li {
  padding: 0;
}
.how li strong {
  font-size: 18px;
  font-weight: 500;
}
.how li p {
  font-size: 14px;
  margin: 10px 0;
}
.breadcrumbs {
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 20px;
}
.breadcrumbs a {
  text-decoration: none;
}
.catalogue-heading {
  align-items: flex-end;
}
.catalogue-heading h1 {
  font-size: 48px;
  margin-bottom: 12px;
}
.category-links {
  display: flex;
  gap: 28px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
  margin: 20px 0;
}
.category-links a {
  text-decoration: none;
  font-size: 14px;
}
.category-links a[aria-current] {
  color: var(--gold);
  text-decoration: underline;
}
.filters {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr auto;
  gap: 18px;
  align-items: end;
  margin-bottom: 24px;
}
label {
  display: block;
  font-size: 14px;
  margin-bottom: 7px;
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid #aeb3aa;
  background: white;
  padding: 12px;
  border-radius: 0;
  color: var(--ink);
  min-height: 48px;
}
textarea {
  resize: vertical;
}
select {
  padding-right: 25px;
}
.list-note {
  font-size: 13px;
  margin-top: 45px;
}
.product-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5%;
}
.main-image {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  background: var(--surface);
}
.thumbnails {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.thumbnails button {
  background: transparent;
  border: 1px solid var(--line);
  padding: 0;
  width: 80px;
}
.product-info h1 {
  font-size: 36px;
}
.model {
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 14px;
}
.product-price {
  font-size: 24px;
  color: var(--ink);
}
.product-price small {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 5px;
}
.product-description {
  font-size: 15px;
  white-space: pre-line;
}
.product-info label {
  margin-top: 20px;
}
.quantity-row {
  display: flex;
  align-items: end;
  gap: 20px;
}
.quantity-row > div {
  width: 90px;
}
.quantity-row > .button {
  flex: 1;
}
.fine-print {
  font-size: 12px;
  margin-top: 20px;
}
.check {
  display: flex;
  align-items: center;
  gap: 10px;
}
.check input {
  width: 20px;
  min-height: 20px;
}
.product-info details {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}
.product-info summary {
  cursor: pointer;
  font-size: 15px;
}
.product-info dl {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 10px;
  font-size: 13px;
}
.product-info dd {
  margin: 0;
  color: var(--muted);
}
.product-info details p {
  font-size: 14px;
  margin-top: 15px;
}
.quote > h1 {
  margin-bottom: 16px;
}
.intro {
  max-width: 620px;
}
.quote-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3%;
  align-items: start;
  margin-top: 28px;
}
.quote-layout h2 {
  font-size: 26px;
}
.quote-panel {
  background: var(--surface);
  padding: 32px;
}
.quote-panel p {
  font-size: 14px;
}
.quote-panel label {
  margin-top: 14px;
}
.quote-panel form > .button {
  width: 100%;
  margin-top: 24px;
}
.cart-item {
  display: flex;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.cart-item > a {
  flex: 0 0 120px;
}
.cart-item img {
  width: 120px;
  aspect-ratio: 1;
  object-fit: cover;
}
.cart-item h3 {
  margin-bottom: 10px;
  font-size: 18px;
}
.cart-item h3 a {
  text-decoration: none;
}
.cart-item p {
  font-size: 12px;
  margin-bottom: 8px;
}
.cart-item input {
  width: 76px;
}
.remove {
  border: 0;
  background: transparent;
  text-decoration: underline;
  font-size: 12px;
  min-height: 44px;
  margin-left: 10px;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
  font-size: 15px;
}
.cart-total strong {
  text-align: right;
}
.empty-cart {
  padding: 32px;
  background: var(--surface);
  margin-bottom: 12px;
}
#prepared {
  border-top: 1px solid var(--line);
  margin-top: 30px;
  padding-top: 26px;
}
#prepared .button {
  margin-bottom: 12px;
}
.prose {
  max-width: 840px;
  min-height: 500px;
}
.prose p {
  font-size: 17px;
  margin-bottom: 24px;
}
.prose h2 {
  font-size: 26px;
  margin-top: 35px;
}
footer {
  background: var(--dark);
  color: #f5f6f1;
  padding: 36px max(var(--page-gutter), calc((100% - 1296px) / 2)) 20px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}
.footer-top p {
  color: #c6d0c7;
  font-size: 13px;
  margin-top: 14px;
}
.footer-top > div > a:not(.brand) {
  display: block;
  margin: 8px 0;
  font-size: 13px;
  text-decoration: none;
}
.footer-top h2 {
  color: inherit;
  font-size: 16px;
  letter-spacing: 0;
  margin-bottom: 20px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #526358;
  margin-top: 35px;
  padding-top: 20px;
  font-size: 11px;
  color: #c6d0c7;
}
#toast {
  position: fixed;
  left: 24px;
  bottom: 20px;
  max-width: calc(100% - 48px);
  background: var(--ink);
  color: white;
  z-index: 10;
  font-size: 13px;
}
#toast:not(:empty) {
  padding: 12px 20px;
}
#product-message {
  font-size: 14px;
  color: var(--dark);
}
.image-placeholder {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background: var(--surface);
}
@font-face {
  font-family: Manrope;
  src: url("/fonts/manrope-400.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Manrope;
  src: url("/fonts/manrope-500.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: Manrope;
  src: url("/fonts/manrope-600.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}
@media (max-width: 1050px) {
  .header {
    gap: 16px;
    padding: 20px 4%;
  }
  .brand {
    font-size: 20px;
  }
  .header nav {
    gap: 16px;
  }
  .header nav a {
    font-size: 12px;
  }
  .cart-link {
    padding-left: 12px;
    font-size: 12px;
  }
  .hero {
    min-height: 400px;
  }
  .hero-copy {
    padding: 36px 8%;
  }
  .hero-image {
    min-height: 0;
  }
  .collections {
    grid-template-columns: 1fr;
  }
  .collection {
    grid-template-columns: 160px 1fr;
  }
  .how {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .filters {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .filters button {
    grid-column: 3;
  }
  .product-layout {
    gap: 5%;
  }
  .product-info h1 {
    font-size: 34px;
  }
}
@media (max-width: 740px) {
  .announcement {
    font-size: 10px;
    padding: 7px 10px;
  }
  .header {
    flex-wrap: wrap;
    padding: 16px 5%;
    gap: 12px;
  }
  .brand {
    font-size: 20px;
  }
  .brand img {
    width: 30px;
    height: 30px;
  }
  .menu-toggle {
    display: block;
    margin-left: auto;
    background: transparent;
    border: 0;
    padding: 8px;
    min-height: 44px;
    font-size: 13px;
  }
  .header nav {
    display: none;
    order: 4;
    width: 100%;
    margin: 0;
    padding: 12px 0;
  }
  .header nav.open {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .header nav a {
    font-size: 16px;
    padding: 10px 0;
  }
  .cart-link {
    border: 0;
    padding: 0;
    font-size: 12px;
  }
  .cart-link span {
    min-width: 20px;
  }
  .hero {
    display: flex;
    flex-direction: column;
  }
  .hero-copy {
    padding: 38px 6% 32px;
  }
  .hero h1 {
    font-size: clamp(40px, 11vw, 52px);
    margin-bottom: 18px;
  }
  .hero p {
    font-size: 15px;
    max-width: 330px;
    margin-bottom: 22px;
  }
  .hero .text-link {
    margin-top: 14px;
    font-size: 12px;
  }
  .hero-image {
    min-height: 0;
    height: 260px;
  }
  .hero-image > img {
    object-position: center 55%;
  }
  .image-caption {
    left: 18px;
    bottom: 15px;
    font-size: 11px;
  }
  .section {
    padding: 38px 5%;
  }
  .section-heading {
    display: block;
    margin-bottom: 24px;
  }
  .section-heading h2 {
    font-size: 29px;
  }
  .section-heading p {
    font-size: 14px;
  }
  .section-heading > a {
    display: inline-block;
    margin-top: 10px;
  }
  .collections {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .collection {
    display: grid;
    grid-template-columns: 42% 1fr;
    column-gap: 18px;
    align-items: center;
  }
  .collection img {
    grid-row: 1 / 3;
    min-height: 140px;
    aspect-ratio: 1.2;
  }
  .collection h3 {
    font-size: 21px;
    margin: 0;
    align-self: end;
  }
  .collection p {
    font-size: 14px;
    align-self: start;
    margin-top: 8px;
  }
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 14px;
  }
  .featured .product-grid {
    grid-template-columns: 1fr;
  }
  .featured .product-card {
    padding: 12px;
    column-gap: 14px;
  }
  .card-meta {
    display: block;
    font-size: 12px;
  }
  .card-meta span + span {
    display: none;
  }
  .product-card h3 {
    font-size: 16px;
    line-height: 1.3;
  }
  .card-size {
    font-size: 14px;
    min-height: 36px;
  }
  .card-bottom {
    display: block;
    font-size: 14px;
  }
  .card-bottom a {
    display: block;
    min-height: 44px;
    padding-top: 10px;
    font-size: 14px;
  }
  .how {
    margin: 20px 0 0;
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .how h2 {
    font-size: 34px;
  }
  .how ol {
    grid-template-columns: 1fr;
    padding-left: 0;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .footer-top > div:first-child {
    grid-column: 1/-1;
  }
  .footer-bottom {
    display: block;
  }
  .footer-bottom span {
    display: block;
    margin-top: 8px;
  }
  .category-links {
    gap: 20px;
    overflow: auto;
    white-space: nowrap;
    margin-top: 22px;
  }
  .category-links a {
    min-height: 36px;
  }
  .catalogue-heading h1 {
    font-size: 38px;
  }
  .catalogue-heading p {
    margin-top: 12px;
  }
  .filters {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .filters > div:first-child {
    grid-column: 1/-1;
  }
  .filters button {
    grid-column: 1/-1;
    min-height: 40px;
    padding: 8px;
  }
  .product-layout {
    display: block;
  }
  .product-info {
    margin-top: 30px;
  }
  .product-info h1 {
    font-size: 36px;
  }
  .breadcrumbs {
    font-size: 11px;
    margin-bottom: 22px;
  }
  .quote-layout {
    display: block;
  }
  .quote-panel {
    margin-top: 35px;
    padding: 20px;
  }
  .cart-item {
    gap: 15px;
  }
  .cart-item > a {
    flex-basis: 90px;
  }
  .cart-item img {
    width: 90px;
  }
  .cart-total {
    font-size: 13px;
  }
  .quote h1 {
    font-size: 38px;
  }
  .prose h1 {
    font-size: 40px;
  }
  input,
  select,
  textarea {
    font-size: 16px;
  }
  footer {
    padding-top: 38px;
  }
  .button {
    min-height: 48px;
  }
  #toast {
    left: 16px;
    bottom: 12px;
    max-width: calc(100% - 32px);
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
