:root {
  --blue: #164c91;
  --blue-deep: #0a2557;
  --blue-bright: #1d61b5;
  --ink: #111318;
  --ink-soft: #4d5159;
  --paper: #ffffff;
  --warm: #f5f3ef;
  --silver: #d7d9dd;
  --line: #dedfe2;
  --success: #176d48;
  --error: #a82828;
  --shadow: 0 22px 70px rgba(10, 18, 37, 0.12);
  --radius: 2px;
  --container: 1180px;
  --header-height: 84px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(29, 97, 181, 0.35);
  outline-offset: 3px;
}

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

h1,
h2,
h3 {
  letter-spacing: -0.04em;
  line-height: 1.06;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(3.15rem, 6.2vw, 6.2rem);
  font-weight: 500;
}

h2 {
  margin-bottom: 26px;
  font-size: clamp(2.25rem, 4vw, 4.25rem);
  font-weight: 550;
}

h3 {
  font-size: clamp(1.65rem, 2.3vw, 2.4rem);
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  padding-block: clamp(88px, 10vw, 144px);
}

.section--soft {
  background: var(--warm);
}

.eyebrow {
  margin-bottom: 22px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1.3;
}

.lead {
  color: var(--ink);
  font-size: clamp(1.14rem, 1.6vw, 1.35rem);
  font-weight: 500;
  line-height: 1.65;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: white;
  background: var(--blue-deep);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.topbar {
  position: relative;
  z-index: 30;
  color: rgba(255, 255, 255, 0.86);
  background: var(--ink);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.topbar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 180ms ease;
}

.topbar a:hover {
  color: white;
}

.topbar svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid transparent;
  transition: box-shadow 240ms ease, border-color 240ms ease, background 240ms ease;
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  border-color: rgba(17, 19, 24, 0.08);
  box-shadow: 0 10px 40px rgba(10, 20, 40, 0.08);
}

.header__inner {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  line-height: 1;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: cover;
}

.brand__wordmark {
  display: inline-flex;
  align-items: baseline;
  color: var(--blue-deep);
  font-size: 1.18rem;
  letter-spacing: -0.055em;
}

.brand__wordmark strong {
  font-weight: 800;
}

.brand__wordmark span {
  margin-left: 2px;
  font-weight: 400;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.6vw, 38px);
  font-size: 0.84rem;
  font-weight: 700;
}

.primary-nav > a:not(.button) {
  position: relative;
  padding-block: 11px;
}

.primary-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.primary-nav > a:not(.button):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  transition: transform 250ms ease, opacity 250ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  color: white;
  background: var(--blue);
  border: 1px solid var(--blue);
  border-radius: var(--radius);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.025em;
  line-height: 1.2;
  cursor: pointer;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms var(--ease), box-shadow 220ms ease;
}

.button:hover {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  box-shadow: 0 10px 30px rgba(10, 37, 87, 0.18);
  transform: translateY(-2px);
}

.button--small {
  min-height: 42px;
  padding: 11px 19px;
}

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

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

.button--ghost-light {
  color: white;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.44);
}

.button--ghost-light:hover {
  color: var(--ink);
  background: white;
  border-color: white;
}

.button--outline {
  color: var(--blue-deep);
  background: transparent;
  border-color: rgba(10, 37, 87, 0.42);
}

.button--outline:hover {
  color: white;
}

.button--full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 6px;
  color: var(--blue-deep);
  border-bottom: 1px solid currentColor;
  font-size: 0.86rem;
  font-weight: 800;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.hero {
  position: relative;
  min-height: clamp(670px, calc(100vh - 122px), 900px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
  background: #0a1325;
}

.hero__image {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: 64%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
}

.hero__overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 13, 28, 1) 0%, rgba(6, 13, 28, 0.97) 28%, rgba(6, 13, 28, 0.73) 55%, rgba(6, 13, 28, 0.1) 100%),
    linear-gradient(180deg, transparent 65%, rgba(6, 13, 28, 0.55) 100%);
}

.hero::before {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 7%;
  width: 1px;
  height: 100%;
  content: "";
  background: rgba(255, 255, 255, 0.08);
}

.hero__content {
  position: relative;
  z-index: 3;
  padding-block: 100px 140px;
}

.hero__content > * {
  max-width: 790px;
}

.hero__eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.hero__intro {
  max-width: 610px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.7;
}

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

.hero__scroll {
  position: absolute;
  z-index: 4;
  right: 42px;
  bottom: 34px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(-100%);
  transform-origin: right bottom;
}

.hero__scroll i {
  width: 52px;
  height: 1px;
  display: block;
  background: currentColor;
}

.intro__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.75fr;
  gap: clamp(70px, 10vw, 150px);
  align-items: start;
}

.intro h2 {
  margin-bottom: 0;
}

.intro__copy {
  padding-top: 46px;
  color: var(--ink-soft);
}

.intro__copy .text-link {
  margin-top: 18px;
}

.section-heading {
  margin-bottom: clamp(44px, 6vw, 76px);
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  gap: 60px;
  align-items: end;
}

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

.section-heading .eyebrow {
  margin-bottom: 20px;
}

.section-heading > p {
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 310px;
  gap: 18px;
}

.collection-card {
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  color: white;
  background: var(--ink);
}

.collection-card--large {
  grid-column: span 8;
}

.collection-card--wide {
  grid-column: span 8;
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease), filter 400ms ease;
}

.collection-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 34%, rgba(3, 8, 16, 0.82) 100%);
}

.collection-card__content {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 26px;
  left: 28px;
}

.collection-card__content p {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.collection-card__content h3 {
  margin-bottom: 5px;
  font-size: clamp(1.65rem, 2.5vw, 2.6rem);
  font-weight: 550;
}

.collection-card__content span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
}

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

.collections__cta {
  margin-top: 38px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}

.collections__cta p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.shop__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.82fr);
  gap: clamp(64px, 9vw, 128px);
  align-items: center;
}

.shop__image-wrap {
  position: relative;
  padding: 0 42px 42px 0;
}

.shop__image-wrap::before {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  width: 72%;
  height: 78%;
  content: "";
  background: var(--warm);
}

.shop__image-wrap img {
  width: 100%;
  aspect-ratio: 0.92;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.shop__address-badge {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 154px;
  height: 154px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  color: white;
  background: var(--blue-deep);
}

.shop__address-badge strong {
  font-size: 3.2rem;
  line-height: 1;
}

.shop__address-badge span {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.5;
}

.shop__content > p:not(.eyebrow) {
  color: var(--ink-soft);
}

.shop__content .lead {
  color: var(--ink);
}

.shop__details {
  margin: 36px 0 40px;
  border-top: 1px solid var(--line);
}

.shop__details > div {
  padding-block: 18px;
  display: grid;
  grid-template-columns: 115px 1fr;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.shop__details dt {
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.shop__details dd {
  margin: 0;
  color: var(--ink-soft);
}

.shop__details a {
  color: var(--ink);
  font-weight: 700;
}

.brand-statement {
  overflow: hidden;
  color: white;
  background: var(--blue-deep);
}

.brand-statement__inner {
  min-height: 370px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: 70px;
  text-align: center;
}

.brand-statement__inner::before,
.brand-statement__inner::after {
  position: absolute;
  width: 1px;
  height: 100%;
  content: "";
  background: rgba(255, 255, 255, 0.08);
}

.brand-statement__inner::before {
  left: 12%;
}

.brand-statement__inner::after {
  right: 12%;
}

.brand-statement__mark {
  width: 50px;
  height: 58px;
  margin-bottom: 30px;
  fill: none;
  stroke: rgba(255, 255, 255, 0.7);
  stroke-width: 2;
}

.brand-statement blockquote {
  margin: 0 0 24px;
  font-size: clamp(2.3rem, 5vw, 5rem);
  font-weight: 450;
  letter-spacing: -0.045em;
  line-height: 1.12;
}

.brand-statement p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 270px);
  gap: 16px;
}

.gallery-item {
  position: relative;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  color: white;
  background: var(--ink);
  border: 0;
  cursor: zoom-in;
}

.gallery-item--tall {
  grid-row: span 2;
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 48%, rgba(4, 8, 14, 0.66) 100%);
  transition: background 240ms ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.gallery-item span {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 18px;
  left: 20px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-align: left;
  text-transform: uppercase;
}

.gallery-item:hover img {
  transform: scale(1.045);
}

.gallery-item:hover::after {
  background: linear-gradient(180deg, rgba(4, 8, 14, 0.06), rgba(4, 8, 14, 0.74));
}

.lightbox {
  width: min(900px, calc(100% - 32px));
  max-height: calc(100vh - 40px);
  padding: 0;
  color: white;
  background: #0b0d12;
  border: 0;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.45);
}

.lightbox::backdrop {
  background: rgba(4, 8, 16, 0.86);
  backdrop-filter: blur(5px);
}

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

.lightbox p {
  margin: 0;
  padding: 16px 62px 18px 20px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
}

.lightbox__close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: white;
  background: rgba(0, 0, 0, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.social-strip {
  padding-block: 70px;
  background: var(--warm);
  border-top: 1px solid rgba(17, 19, 24, 0.06);
}

.social-strip__inner {
  display: grid;
  grid-template-columns: 1fr 0.7fr 1.6fr;
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.social-strip .eyebrow {
  margin-bottom: 10px;
}

.social-strip h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
}

.social-strip__inner > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.social-strip__links {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 12px;
}

.social-strip__links a {
  min-height: 78px;
  display: grid;
  grid-template-columns: 30px 1fr auto;
  gap: 13px;
  align-items: center;
  padding: 15px 17px;
  color: var(--blue-deep);
  background: white;
  border: 1px solid rgba(10, 37, 87, 0.14);
  transition: color 220ms ease, border-color 220ms ease, box-shadow 220ms ease, transform 220ms var(--ease);
}

.social-strip__links a:hover {
  color: var(--blue);
  border-color: rgba(22, 76, 145, 0.42);
  box-shadow: 0 12px 35px rgba(10, 37, 87, 0.09);
  transform: translateY(-2px);
}

.social-strip__links svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.social-strip__links svg rect,
.social-strip__links svg circle:not(.social-dot) {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.social-strip__links span {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.social-strip__links small {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.social-strip__links strong {
  overflow: hidden;
  font-size: 0.72rem;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.social-strip__links b {
  font-size: 0.82rem;
}

.contact {
  color: white;
  background:
    radial-gradient(circle at 0 0, rgba(29, 97, 181, 0.23), transparent 34%),
    var(--ink);
}

.contact__grid {
  display: grid;
  grid-template-columns: 0.78fr 1.05fr;
  gap: clamp(60px, 10vw, 135px);
  align-items: start;
}

.contact .eyebrow {
  color: #7eb1ed;
}

.contact__intro .lead {
  max-width: 510px;
  color: rgba(255, 255, 255, 0.7);
}

.contact__methods {
  margin-top: 58px;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.contact__methods a {
  padding-block: 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition: color 180ms ease;
}

.contact__methods a:hover {
  color: #a9cef8;
}

.contact__methods svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  fill: currentColor;
}

.contact__methods span {
  display: grid;
  gap: 2px;
}

.contact__methods small {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.contact__methods strong {
  font-size: 0.96rem;
  font-weight: 600;
}

.contact-card {
  padding: clamp(30px, 5vw, 54px);
  color: var(--ink);
  background: white;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.24);
}

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

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

.enquiry-form label:not(.consent) {
  display: grid;
  gap: 8px;
}

.enquiry-form label > span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.055em;
}

.enquiry-form label > span b {
  color: var(--blue);
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  color: var(--ink);
  background: #fafafa;
  border: 1px solid #d9dce2;
  border-radius: 0;
  outline: 0;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.enquiry-form input,
.enquiry-form select {
  height: 52px;
  padding: 0 14px;
}

.enquiry-form textarea {
  min-height: 118px;
  padding: 13px 14px;
  resize: vertical;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  background: white;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(22, 76, 145, 0.1);
}

.enquiry-form textarea::placeholder {
  color: #8d9097;
}

.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--ink-soft);
  cursor: pointer;
}

.consent input {
  width: 17px;
  height: 17px;
  margin: 3px 0 0;
  accent-color: var(--blue);
}

.consent span {
  font-size: 0.72rem !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  line-height: 1.55;
}

.form-note {
  margin: -7px 0 0;
  color: #747780;
  font-size: 0.68rem;
  text-align: center;
}

.form-status {
  display: none;
  margin: 0;
  padding: 12px 14px;
  font-size: 0.78rem;
  line-height: 1.5;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  color: var(--success);
  background: #edf8f2;
}

.form-status.is-error {
  color: var(--error);
  background: #fff0f0;
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: #090a0d;
}

.footer__main {
  padding-block: 72px 58px;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr 0.8fr;
  gap: 50px;
}

.brand--footer .brand__wordmark {
  color: white;
}

.brand--footer img {
  border: 4px solid white;
}

.footer__main > div:first-child > p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer__main h2 {
  margin-bottom: 18px;
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer__main address,
.footer__main > div:not(:first-child) {
  font-size: 0.83rem;
  font-style: normal;
}

.footer__main > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer__main > div:not(:first-child) a {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.82);
  transition: color 180ms ease;
}

.footer__main > div:not(:first-child) a:hover {
  color: white;
}

.footer__main > div:not(:first-child) span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.72rem;
}

.footer__bottom {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255, 255, 255, 0.36);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.68rem;
}

.footer__bottom p {
  margin: 0;
}

.footer__bottom a:hover {
  color: white;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  .primary-nav {
    gap: 20px;
  }

  .hero__image {
    width: 76%;
  }

  .hero__overlay {
    background: linear-gradient(90deg, rgba(6, 13, 28, 1) 0%, rgba(6, 13, 28, 0.94) 40%, rgba(6, 13, 28, 0.52) 72%, rgba(6, 13, 28, 0.18) 100%);
  }

  .collection-grid {
    grid-auto-rows: 280px;
  }

  .shop__grid {
    grid-template-columns: 1fr 0.9fr;
    gap: 58px;
  }

  .contact__grid {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
  }

  .social-strip__inner {
    grid-template-columns: 0.9fr 1.7fr;
  }

  .social-strip__inner > p {
    display: none;
  }

  .footer__main {
    grid-template-columns: 1.5fr 1fr 1.2fr;
  }

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

@media (max-width: 860px) {
  :root {
    --header-height: 74px;
  }

  .topbar__inner a:first-child {
    display: none;
  }

  .topbar__inner {
    justify-content: flex-end;
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    z-index: 49;
    top: var(--header-height);
    right: 0;
    bottom: auto;
    width: min(390px, 100%);
    height: calc(100vh - var(--header-height));
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 30px 28px 50px;
    background: white;
    box-shadow: -20px 20px 60px rgba(4, 12, 28, 0.18);
    overflow-y: auto;
    transform: translateX(105%);
    transition: transform 350ms var(--ease);
  }

  .primary-nav.is-open {
    transform: translateX(0);
  }

  .primary-nav > a:not(.button) {
    padding: 20px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .primary-nav .button {
    margin-top: 26px;
  }

  .hero {
    min-height: 760px;
  }

  .hero__image {
    width: 100%;
    opacity: 0.72;
  }

  .hero__overlay {
    background: linear-gradient(90deg, rgba(6, 13, 28, 0.93), rgba(6, 13, 28, 0.56)), linear-gradient(180deg, rgba(6, 13, 28, 0.08) 35%, rgba(6, 13, 28, 0.78) 100%);
  }

  .hero__content > * {
    max-width: 700px;
  }

  .hero__scroll {
    display: none;
  }

  .intro__grid,
  .section-heading,
  .shop__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .intro__grid,
  .section-heading {
    gap: 30px;
  }

  .intro__copy {
    padding-top: 0;
  }

  .section-heading > p {
    max-width: 620px;
  }

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

  .collection-card,
  .collection-card--large,
  .collection-card--wide {
    grid-column: span 1;
  }

  .shop__image-wrap {
    max-width: 660px;
  }

  .shop__content {
    max-width: 660px;
  }

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

  .gallery-item--wide {
    grid-column: span 1;
  }

  .contact__intro {
    max-width: 660px;
  }

  .social-strip__inner {
    grid-template-columns: 1fr;
  }

  .social-strip__inner > p {
    display: block;
  }

  .contact__methods {
    margin-top: 38px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .topbar__inner {
    justify-content: center;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand__wordmark {
    font-size: 1rem;
  }

  .hero {
    min-height: 690px;
  }

  .hero__content {
    padding-block: 72px 100px;
  }

  .hero__content br {
    display: none;
  }

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

  .hero__actions .button {
    width: 100%;
  }

  .collection-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 360px;
  }

  .collection-card,
  .collection-card--large,
  .collection-card--wide {
    grid-column: 1;
  }

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

  .collections__cta .button {
    width: 100%;
  }

  .shop__grid {
    gap: 50px;
  }

  .shop__image-wrap {
    padding: 0 24px 24px 0;
  }

  .shop__address-badge {
    width: 124px;
    height: 124px;
  }

  .shop__address-badge strong {
    font-size: 2.6rem;
  }

  .shop__details > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .brand-statement blockquote {
    font-size: 2.5rem;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .gallery-item,
  .gallery-item--tall,
  .gallery-item--wide {
    min-height: 320px;
    grid-row: auto;
    grid-column: 1;
  }

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

  .social-strip__links {
    grid-template-columns: 1fr;
  }

  .contact-card {
    margin-inline: -4px;
    padding: 26px 22px;
  }

  .footer__main {
    grid-template-columns: repeat(2, 1fr);
    gap: 44px 28px;
  }

  .footer__main > div:first-child {
    grid-column: 1 / -1;
  }

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

  .footer__bottom {
    padding-block: 24px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
