@font-face {
  font-family: "Cinzel";
  src: url("/assets/fonts/cinzel-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cinzel";
  src: url("/assets/fonts/cinzel-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Museo";
  src: url("/assets/fonts/museo-300.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Museo";
  src: url("/assets/fonts/museo-500.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #050505;
  --black-soft: #0d0d0d;
  --ink: #171717;
  --white: #fff;
  --ivory: #f5f2ec;
  --smoke: #aaa69f;
  --line: rgba(255, 255, 255, 0.16);
  --gold: #d3ae51;
  --gold-light: #ebd184;
  --shell: min(1180px, calc(100vw - 64px));
  --display: "Cinzel", Georgia, serif;
  --body: "Museo", "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--white);
  background: var(--black);
  font-family: var(--body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.nav-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 {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 14px;
  left: 14px;
  padding: 10px 16px;
  color: var(--black);
  background: var(--gold-light);
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.1;
}

h1 {
  font-size: clamp(3rem, 7.2vw, 7rem);
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(2.25rem, 4.8vw, 4.9rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.65rem);
}

.site-header {
  position: relative;
  z-index: 50;
  background: var(--black);
}

.utility-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  color: #b8b3aa;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.utility-bar > span {
  display: none;
}

.utility-bar a {
  transition: color 180ms ease;
}

.utility-bar a:hover,
.site-nav__link:hover,
.footer-main a:hover,
.footer-bottom a:hover {
  color: var(--gold-light);
}

.utility-bar__phones {
  display: flex;
  gap: 14px;
}

.header-main {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 138px;
}

.brand {
  position: relative;
  z-index: 2;
  width: 235px;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr max-content 410px max-content 1fr;
  align-items: center;
  gap: clamp(18px, 4vw, 56px);
  pointer-events: none;
}

.site-nav__link {
  position: relative;
  width: max-content;
  color: #f1eee8;
  font-family: var(--display);
  font-size: 0.82rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  pointer-events: auto;
  transition: color 180ms ease;
}

.site-nav__link:nth-child(1) {
  grid-column: 1;
  justify-self: end;
}

.site-nav__link:nth-child(2) {
  grid-column: 2;
  justify-self: end;
}

.site-nav__link:nth-child(3) {
  grid-column: 4;
  justify-self: start;
}

.site-nav__link:nth-child(4) {
  grid-column: 5;
  justify-self: start;
}

.site-nav__link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.site-nav__link:hover::after,
.site-nav__link.is-current::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(100svh - 180px);
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: #000;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.45) 48%, rgba(0, 0, 0, 0.1) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.65) 0%, transparent 38%);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100svh - 180px);
  padding-block: 80px 110px;
}

.hero h1 {
  max-width: 900px;
  margin-bottom: 26px;
  text-wrap: balance;
}

.hero h1 em {
  color: var(--gold-light);
  font-style: normal;
}

.hero__intro {
  max-width: 575px;
  margin-bottom: 40px;
  color: #d1cec8;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 26px;
  border: 1px solid transparent;
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--gold {
  color: #0a0907;
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.button--gold:hover {
  background: var(--white);
  border-color: var(--white);
}

.button--ghost {
  color: var(--white);
  background: rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
}

.button--ghost:hover {
  color: var(--black);
  background: var(--white);
}

.hero__scroll {
  position: absolute;
  z-index: 2;
  right: max(32px, calc((100vw - 1180px) / 2));
  bottom: 32px;
  display: flex;
  gap: 18px;
  align-items: center;
  color: #d3d0c9;
  font-family: var(--display);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__scroll span {
  color: var(--gold-light);
  font-size: 1rem;
}

.heritage {
  display: grid;
  grid-template-columns: 0.7fr 1.4fr 1fr;
  gap: clamp(30px, 7vw, 90px);
  align-items: center;
  padding-block: clamp(90px, 12vw, 165px);
}

.heritage__number {
  color: transparent;
  font-family: var(--display);
  font-size: clamp(4.5rem, 10vw, 9rem);
  line-height: 1;
  -webkit-text-stroke: 1px rgba(235, 209, 132, 0.5);
}

.heritage h2 {
  margin-bottom: 0;
}

.heritage__text {
  color: #b9b5ae;
}

.heritage__text p {
  margin-bottom: 28px;
}

.text-link {
  display: inline-flex;
  gap: 14px;
  color: var(--white);
  border-bottom: 1px solid var(--gold);
  font-family: var(--display);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.collections-preview,
.values {
  padding-block: clamp(80px, 10vw, 140px);
  background: var(--ivory);
  color: var(--ink);
}

.section-heading {
  margin-bottom: clamp(42px, 6vw, 76px);
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading--split {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 80px;
  align-items: end;
}

.section-heading--split > p {
  max-width: 430px;
  margin-bottom: 8px;
  color: #625f59;
}

.section-heading--center {
  text-align: center;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.collection-card {
  grid-column: span 2;
}

.collection-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.collection-card a {
  display: block;
}

.collection-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1.08;
  background: #0b0b0b;
}

.collection-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.collection-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82);
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 300ms ease;
}

.collection-card:hover img {
  filter: saturate(1);
  transform: scale(1.04);
}

.collection-card__content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 22px 2px 38px;
  border-bottom: 1px solid #cbc5ba;
}

.collection-card__content h3,
.collection-card__content p {
  margin-bottom: 0;
}

.collection-card__content p {
  color: #78736b;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.collection-card__content > span {
  color: #8d6d21;
  font-size: 1.25rem;
}

.craft-cta {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  background:
    radial-gradient(circle at 70% 40%, rgba(222, 192, 111, 0.12), transparent 26%),
    linear-gradient(120deg, #080808 0%, #111 55%, #050505 100%);
}

.craft-cta::before {
  content: "";
  position: absolute;
  top: 18%;
  right: 8%;
  width: min(42vw, 560px);
  aspect-ratio: 1;
  border: 1px solid rgba(235, 209, 132, 0.28);
  border-radius: 50%;
  box-shadow: inset 0 0 100px rgba(235, 209, 132, 0.03);
}

.craft-cta::after {
  content: "✦";
  position: absolute;
  top: 50%;
  right: 28%;
  color: rgba(235, 209, 132, 0.58);
  font-size: 3rem;
}

.craft-cta__content {
  position: relative;
  z-index: 2;
  padding-block: clamp(110px, 15vw, 180px);
}

.craft-cta__content h2,
.craft-cta__content p {
  max-width: 700px;
}

.craft-cta__content p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 35px;
  color: #b9b5ae;
}

.affiliations {
  padding-block: 90px 110px;
}

.affiliations__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  align-items: center;
}

.affiliations__grid a {
  display: flex;
  min-height: 95px;
  align-items: center;
  justify-content: center;
  padding: 14px;
  opacity: 0.62;
  transition: opacity 180ms ease, transform 180ms ease;
}

.affiliations__grid a:hover {
  opacity: 1;
  transform: translateY(-3px);
}

.affiliations__grid img {
  max-width: 150px;
  max-height: 68px;
  mix-blend-mode: screen;
  filter: grayscale(1);
}

.page-hero {
  position: relative;
  display: flex;
  min-height: 500px;
  align-items: end;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: #0b0b0b;
}

.page-hero--collections {
  background:
    radial-gradient(circle at 78% 45%, rgba(226, 206, 162, 0.16), transparent 22%),
    linear-gradient(120deg, #070707 0%, #121212 100%);
}

.page-hero--collections::after {
  content: "◇";
  position: absolute;
  right: 8vw;
  bottom: -17vw;
  color: rgba(235, 209, 132, 0.22);
  font-family: serif;
  font-size: min(44vw, 640px);
  line-height: 1;
}

.page-hero__content {
  position: relative;
  z-index: 2;
  padding-block: 90px 70px;
}

.page-hero__content h1 {
  margin-bottom: 20px;
}

.page-hero__content > p:last-child {
  max-width: 560px;
  color: #bdb9b1;
}

.collection-index {
  padding-block: 100px 140px;
}

.collection-index .collection-card__content {
  color: var(--white);
  border-color: var(--line);
}

.collection-index .collection-card__content p {
  color: #8f8b84;
}

.collection-hero {
  padding-block: 52px 70px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.breadcrumbs {
  display: flex;
  gap: 12px;
  margin-bottom: 70px;
  color: #8f8b84;
  font-family: var(--display);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.breadcrumbs a:hover {
  color: var(--gold-light);
}

.collection-hero__grid {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 80px;
  align-items: end;
}

.collection-hero__grid h1 {
  margin-bottom: 0;
}

.collection-hero__grid > p {
  margin-bottom: 15px;
  color: #aaa69f;
  font-size: 1.05rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-block: 70px 120px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  padding: 0;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0f0f0f;
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease, opacity 250ms ease;
}

.gallery-item > span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 7px 10px;
  color: var(--black);
  background: var(--gold-light);
  font-family: var(--display);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  opacity: 0;
  transform: translateY(6px);
  text-transform: uppercase;
  transition: opacity 180ms ease, transform 180ms ease;
}

.gallery-item:hover img {
  opacity: 0.86;
  transform: scale(1.025);
}

.gallery-item:hover > span,
.gallery-item:focus-visible > span {
  opacity: 1;
  transform: translateY(0);
}

.lightbox {
  width: min(1000px, calc(100vw - 40px));
  height: min(900px, calc(100vh - 40px));
  padding: 48px 76px 32px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(4, 4, 4, 0.98);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(6px);
}

.lightbox figure {
  display: grid;
  height: 100%;
  margin: 0;
  place-items: center;
}

.lightbox figure img {
  max-width: 100%;
  max-height: calc(100% - 40px);
  object-fit: contain;
}

.lightbox figcaption {
  color: #918c83;
  font-family: var(--display);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}

.lightbox button {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: #0b0b0b;
  cursor: pointer;
  place-items: center;
}

.lightbox__close {
  top: 16px;
  right: 16px;
  font-size: 1.5rem;
}

.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__nav--previous {
  left: 16px;
}

.lightbox__nav--next {
  right: 16px;
}

.conversation-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0b0b0b;
}

.conversation-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-block: 70px;
}

.conversation-band h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.page-hero--about {
  min-height: 650px;
  align-items: center;
}

.page-hero--about .page-hero__content {
  padding-left: min(43vw, 530px);
}

.page-hero__media {
  position: absolute;
  inset: 0 52% 0 0;
  overflow: hidden;
}

.page-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 55%, #0b0b0b 100%);
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(60px, 10vw, 150px);
  padding-block: clamp(90px, 12vw, 160px);
}

.about-story__lead h2 {
  margin-bottom: 0;
}

.about-story__body {
  color: #bcb8b1;
  font-size: 1.05rem;
}

.about-story__body p {
  margin-bottom: 28px;
}

.about-story__body--full {
  grid-column: 1 / -1;
  max-width: 74ch;
  margin-inline: auto;
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 55px;
}

.values article {
  padding-top: 26px;
  border-top: 1px solid #c7c0b4;
}

.values article > span {
  color: #9c7828;
  font-family: var(--display);
  font-size: 0.7rem;
}

.values h3 {
  margin-block: 24px 14px;
  font-size: 1.7rem;
}

.values p {
  color: #69645d;
}

.contact-hero {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  min-height: 610px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-hero__image {
  position: relative;
  overflow: hidden;
  background: #0b0b0b;
}

.contact-hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, #050505 100%);
}

.contact-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 8vw;
}

.contact-hero__content h1 {
  margin-bottom: 25px;
}

.contact-hero__content > p:last-child {
  max-width: 500px;
  color: #aaa69f;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(60px, 9vw, 130px);
  padding-block: 110px 140px;
}

.contact-details {
  display: grid;
  align-content: start;
  gap: 46px;
}

.contact-details address {
  margin-bottom: 12px;
  font-style: normal;
}

.contact-form {
  padding: clamp(28px, 4vw, 58px);
  color: var(--ink);
  background: var(--ivory);
}

.form-heading h2 {
  margin-bottom: 42px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 22px;
}

.form-grid label {
  display: grid;
  gap: 8px;
}

.form-grid label > span {
  font-family: var(--display);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.form-grid label b {
  color: #97711b;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  color: var(--ink);
  border: 0;
  border-bottom: 1px solid #918b80;
  border-radius: 0;
  background: transparent;
}

.form-grid input,
.form-grid select {
  min-height: 48px;
}

.form-grid textarea {
  padding-block: 12px;
  resize: vertical;
}

.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: #6f695d;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  outline: 0;
  border-color: #7d5f1a;
  box-shadow: 0 1px 0 #7d5f1a;
}

.form-grid__full,
.form-submit,
.form-status {
  grid-column: 1 / -1;
}

.form-honeypot {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip-path: inset(50%);
}

.form-submit {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
}

.form-submit p {
  max-width: 290px;
  margin-bottom: 0;
  color: #777168;
  font-size: 0.75rem;
  line-height: 1.5;
}

.form-submit button:disabled {
  cursor: wait;
  opacity: 0.6;
}

.form-status {
  min-height: 26px;
  margin: 20px 0 0;
  font-size: 0.9rem;
}

.form-status.is-success {
  color: #286839;
}

.form-status.is-error {
  color: #a62d2d;
}

.not-found {
  min-height: 600px;
  padding-block: 130px;
  text-align: center;
}

.not-found h1 {
  max-width: 900px;
  margin-inline: auto;
  font-size: clamp(2.6rem, 7vw, 6rem);
}

.not-found > p:not(.eyebrow) {
  color: #aaa69f;
}

.site-footer {
  background: #030303;
}

.site-footer .affiliations {
  padding-block: 60px 50px;
  border-top: 1px solid var(--line);
}

.footer-main--legacy {
  display: block;
  padding-block: 34px 46px;
  border-bottom: 0;
  text-align: center;
}

.footer-contact-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 30px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #c7c3bb;
}

.footer-contact-list a {
  color: #c7c3bb;
}

.footer-contact-list a:hover {
  color: var(--gold-light);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr;
  gap: 70px;
  padding-block: 78px;
  border-bottom: 1px solid var(--line);
}

.footer-brand img {
  width: 205px;
  margin-bottom: 25px;
}

.footer-brand p {
  max-width: 380px;
  margin-bottom: 0;
  color: #8f8b84;
}

.footer-main address {
  font-style: normal;
}

.footer-main a,
.footer-main address {
  color: #c7c3bb;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-block: 22px;
  color: #706c66;
  font-family: var(--display);
  font-size: 0.58rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin-bottom: 0;
}

.footer-bottom a {
  color: var(--white);
  font-weight: 700;
}

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 40px, 760px);
  }

  .utility-bar {
    min-height: 38px;
  }

  .header-main {
    justify-content: space-between;
    min-height: 105px;
  }

  .brand {
    width: 188px;
  }

  .menu-toggle {
    position: relative;
    z-index: 61;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--white);
    border: 0;
    background: transparent;
    font-family: var(--display);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .menu-toggle__icon {
    display: grid;
    gap: 6px;
  }

  .menu-toggle__icon i {
    display: block;
    width: 24px;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 60;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 26px;
    background: rgba(3, 3, 3, 0.98);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 180ms ease, visibility 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav__link {
    font-size: 1.35rem;
  }

  .hero,
  .hero__content {
    min-height: min(780px, calc(100svh - 143px));
  }

  .hero__image {
    object-position: 62% center;
  }

  .hero__veil {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.28)), linear-gradient(0deg, rgba(0, 0, 0, 0.75), transparent 48%);
  }

  .heritage {
    grid-template-columns: 0.6fr 1.4fr;
  }

  .heritage__text {
    grid-column: 2;
  }

  .section-heading--split,
  .collection-hero__grid,
  .about-story,
  .contact-section {
    grid-template-columns: 1fr;
    gap: 38px;
  }

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

  .collection-card,
  .collection-card:nth-child(4) {
    grid-column: auto;
  }

  .collection-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 10px);
    justify-self: center;
  }

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

  .page-hero--about .page-hero__content {
    padding-left: 40%;
  }

  .page-hero__media {
    right: 45%;
  }

  .values__grid {
    gap: 25px;
  }

  .contact-section {
    grid-template-columns: 0.6fr 1.4fr;
    gap: 40px;
  }

  .footer-main {
    grid-template-columns: 1.2fr 1fr;
  }

  .footer-main > div:last-child {
    grid-column: 2;
  }
}

@media (max-width: 680px) {
  :root {
    --shell: calc(100vw - 30px);
  }

  body {
    font-size: 15px;
  }

  .utility-bar {
    justify-content: center;
  }

  .utility-bar > a {
    display: none;
  }

  .utility-bar__phones {
    gap: 9px;
  }

  .header-main {
    min-height: 90px;
  }

  .brand {
    width: 155px;
  }

  .hero,
  .hero__content {
    min-height: 690px;
  }

  .hero__content {
    justify-content: flex-end;
    padding-bottom: 82px;
  }

  .hero__image {
    object-position: 64% center;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 13vw, 4.4rem);
  }

  .hero__intro {
    font-size: 0.98rem;
  }

  .button-row,
  .button-row .button {
    width: 100%;
  }

  .hero__scroll {
    display: none;
  }

  .heritage {
    grid-template-columns: 1fr;
    padding-block: 88px;
  }

  .heritage__number {
    font-size: 5rem;
  }

  .heritage__text {
    grid-column: 1;
  }

  .section-heading--split {
    gap: 22px;
  }

  .collection-grid,
  .gallery,
  .values__grid,
  .contact-hero,
  .contact-section,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .collection-card:last-child {
    grid-column: auto;
    width: 100%;
  }

  .craft-cta {
    min-height: 620px;
  }

  .craft-cta::before {
    top: 10%;
    right: -30%;
    width: 110vw;
  }

  .affiliations__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .affiliations__grid a:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 5px);
    justify-self: center;
  }

  .page-hero {
    min-height: 420px;
  }

  .page-hero--about {
    min-height: 580px;
    align-items: end;
  }

  .page-hero--about .page-hero__content {
    padding: 300px 0 55px;
  }

  .page-hero__media {
    inset: 0 0 38% 0;
  }

  .page-hero__media::after {
    background: linear-gradient(0deg, #0b0b0b 0%, transparent 58%);
  }

  .collection-hero {
    padding-block: 36px 52px;
  }

  .breadcrumbs {
    margin-bottom: 44px;
  }

  .collection-hero__grid {
    gap: 18px;
  }

  .gallery {
    gap: 10px;
    padding-block: 42px 80px;
  }

  .gallery-item > span {
    display: none;
  }

  .lightbox {
    width: calc(100vw - 18px);
    height: calc(100vh - 18px);
    padding: 48px 42px 26px;
  }

  .lightbox__nav--previous {
    left: 5px;
  }

  .lightbox__nav--next {
    right: 5px;
  }

  .conversation-band__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-story {
    padding-block: 85px;
  }

  .contact-hero__image {
    min-height: 340px;
  }

  .contact-hero__image::after {
    background: linear-gradient(0deg, #050505 0%, transparent 60%);
  }

  .contact-hero__content {
    padding: 55px 8px 70px;
  }

  .contact-section {
    padding-block: 78px 95px;
  }

  .contact-form {
    margin-inline: -5px;
  }

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

  .form-grid__full,
  .form-submit,
  .form-status {
    grid-column: auto;
  }

  .form-submit {
    align-items: flex-start;
    flex-direction: column;
  }

  .form-submit .button {
    width: 100%;
  }

  .footer-main {
    gap: 40px;
  }

  .footer-main > div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
