:root {
  --ink: #141414;
  --paper: #f8f8f6;
  --white: #ffffff;
  --muted: #efefeb;
  --line: #d8d8d5;
  --secondary: #575753;
  --focus: #8b1e2d;
  color-scheme: light;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  margin: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
a,
input,
select,
textarea {
  outline-offset: 4px;
}

:focus-visible {
  outline: 2px solid var(--focus);
}

.skip-link {
  background: var(--ink);
  color: var(--white);
  left: 12px;
  padding: 10px 14px;
  position: fixed;
  top: -80px;
  z-index: 100;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  align-items: center;
  background: var(--paper);
  display: flex;
  justify-content: space-between;
  min-height: 92px;
  padding: 12px 5%;
  position: relative;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  flex-direction: column;
  min-width: 124px;
}

.brand span {
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: 2.8rem;
  line-height: 1;
}

.brand small {
  border-top: 1px solid currentColor;
  font-size: 0.6rem;
  margin-top: 5px;
  padding-top: 4px;
  text-align: right;
  text-transform: uppercase;
  width: 100%;
}

.site-navigation {
  align-items: center;
  display: flex;
  gap: 22px;
}

.site-navigation a:not(.nav-enquiry) {
  border-bottom: 1px solid transparent;
  padding-block: 9px;
}

.site-navigation a:not(.nav-enquiry):hover {
  border-bottom-color: currentColor;
}

.nav-enquiry {
  border: 1px solid currentColor;
  min-width: 94px;
  padding: 10px 14px;
  text-align: center;
}

.menu-toggle {
  background: transparent;
  border: 1px solid currentColor;
  cursor: pointer;
  display: none;
  min-height: 42px;
  min-width: 76px;
  padding: 8px 12px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  min-height: 520px;
}

.hero-copy {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 8% 66px 10%;
}

.eyebrow {
  font-size: 0.72rem;
  margin: 0 0 18px;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: "Bodoni Moda", Georgia, serif;
  font-weight: 400;
  margin: 0;
}

h1 {
  font-size: 4.3rem;
  line-height: 0.98;
  max-width: 9ch;
}

h2 {
  font-size: 3rem;
  line-height: 1.06;
}

h3,
p {
  margin-top: 0;
}

.hero-copy > p:not(.eyebrow) {
  line-height: 1.65;
  margin: 26px 0 0;
  max-width: 44ch;
}

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

.button,
.text-link {
  align-items: center;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  min-height: 46px;
  padding: 11px 17px;
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-light {
  background: var(--white);
  color: var(--ink);
  margin-top: 20px;
}

.text-link,
.product-link {
  border-bottom: 1px solid currentColor;
}

.hero-image {
  margin: 0;
  min-height: 520px;
  overflow: hidden;
  position: relative;
}

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

.hero-image figcaption {
  background: rgba(255, 255, 255, 0.94);
  bottom: 24px;
  font-size: 0.72rem;
  left: 24px;
  padding: 10px 12px;
  position: absolute;
  text-transform: uppercase;
}

.edition-strip {
  align-items: center;
  background: var(--ink);
  color: var(--white);
  display: grid;
  gap: 18px;
  grid-template-columns: auto 1fr auto;
  padding: 17px 5%;
}

.edition-strip strong {
  font-weight: 500;
}

.edition-strip span {
  background: rgba(255, 255, 255, 0.35);
  height: 1px;
}

.edition-strip p {
  margin: 0;
}

.collection {
  background: var(--white);
  padding: 88px 5% 96px;
}

.collection-muted {
  background: var(--muted);
}

.collection-header {
  align-items: end;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 36px;
}

.collection-header > p {
  line-height: 1.6;
  margin: 0;
  max-width: 50ch;
  text-align: right;
}

.product-grid {
  display: grid;
  gap: 22px;
}

.product-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.product {
  min-width: 0;
}

.product-image {
  aspect-ratio: 1;
  background: #f6f4f0;
  overflow: hidden;
  position: relative;
}

.product-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
  width: 100%;
}

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

.product-image span {
  background: rgba(255, 255, 255, 0.94);
  font-size: 0.66rem;
  left: 11px;
  padding: 7px 8px;
  position: absolute;
  text-transform: uppercase;
  top: 11px;
}

.product-heading {
  align-items: baseline;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding-top: 16px;
}

.product-heading h3,
.product-heading strong {
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
}

.product > p {
  color: var(--secondary);
  font-size: 0.78rem;
  margin: 7px 0 12px;
}

.product-link {
  display: inline-block;
  font-size: 0.78rem;
  padding-bottom: 3px;
}

.bespoke {
  align-items: center;
  background: var(--ink);
  color: var(--white);
  display: grid;
  gap: 50px;
  grid-template-columns: 1fr 1fr;
  padding: 88px 7%;
}

.bespoke h2 {
  font-size: 3.6rem;
  max-width: 10ch;
}

.bespoke > div:last-child p {
  line-height: 1.65;
  max-width: 48ch;
}

.enquiry {
  background: var(--paper);
  display: grid;
  gap: 70px;
  grid-template-columns: 0.8fr 1.2fr;
  padding: 90px 7%;
}

.enquiry-intro h2 {
  max-width: 10ch;
}

.enquiry-intro > p:last-child {
  line-height: 1.65;
  margin-top: 24px;
  max-width: 40ch;
}

.enquiry-form {
  display: grid;
  gap: 20px;
}

.field-row {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
}

.enquiry-form label {
  display: grid;
  font-size: 0.78rem;
  gap: 8px;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  background: var(--white);
  border: 1px solid #9a9a95;
  border-radius: 0;
  color: var(--ink);
  min-height: 46px;
  padding: 11px 12px;
  width: 100%;
}

.enquiry-form textarea {
  min-height: 130px;
  resize: vertical;
}

.enquiry-form .button {
  justify-self: start;
}

.form-note {
  color: var(--secondary);
  font-size: 0.72rem;
  line-height: 1.5;
  margin: -8px 0 0;
}

.service-strip {
  background: var(--white);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-strip > div {
  min-height: 142px;
  padding: 30px 5%;
}

.service-strip > div + div {
  border-left: 1px solid var(--line);
}

.service-strip strong {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
}

.service-strip p {
  color: var(--secondary);
  line-height: 1.5;
  margin: 0;
}

.site-footer {
  align-items: center;
  background: var(--muted);
  display: grid;
  gap: 24px;
  grid-template-columns: auto 1fr auto;
  min-height: 130px;
  padding: 24px 5%;
}

.footer-brand {
  min-width: 96px;
}

.footer-brand span {
  font-size: 2.1rem;
}

.site-footer p {
  color: var(--secondary);
  margin: 0;
  text-align: center;
}

.site-footer > a:last-child {
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .product-image img {
    transition: none;
  }
}

@media (max-width: 900px) {
  .site-header {
    min-height: 82px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-navigation {
    align-items: stretch;
    background: var(--paper);
    border-top: 1px solid var(--line);
    display: none;
    flex-direction: column;
    gap: 0;
    left: 0;
    padding: 20px 5% 28px;
    position: absolute;
    right: 0;
    top: 100%;
  }

  .site-navigation.is-open {
    display: flex;
  }

  .site-navigation a,
  .site-navigation a:not(.nav-enquiry) {
    border-bottom: 1px solid var(--line);
    padding: 14px 2px;
  }

  .site-navigation .nav-enquiry {
    border: 1px solid var(--ink);
    margin-top: 16px;
  }

  .hero,
  .bespoke,
  .enquiry {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 54px 7%;
  }

  .hero-image {
    min-height: 460px;
  }

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

  .enquiry {
    gap: 44px;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: 3.2rem;
  }

  h2,
  .bespoke h2 {
    font-size: 2.45rem;
  }

  .hero-image {
    min-height: 340px;
  }

  .edition-strip {
    gap: 10px;
    grid-template-columns: 1fr auto;
  }

  .edition-strip span {
    display: none;
  }

  .collection {
    padding: 64px 5% 72px;
  }

  .collection-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .collection-header > p {
    text-align: left;
  }

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

  .bespoke,
  .enquiry {
    padding: 68px 6%;
  }

  .field-row,
  .service-strip,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .service-strip > div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .site-footer {
    justify-items: start;
  }

  .site-footer p {
    text-align: left;
  }
}
