/* Up North Gift Co - site styles
   Identity: heritage travel poster. Basalt + sea-glass on paper, Fraunces display, Instrument Sans body. */

:root {
  --basalt: #0e1b23;
  --navy: #19475f;
  --sea: #24667a;
  --sea-deep: #174b5a;
  --paper: #f3f1eb;
  --chalk: #e8e3d7;
  --white: #ffffff;
  --ink: #16242c;
  --muted: #5d6a70;
  --hair: rgba(22, 36, 44, 0.16);
  --hair-light: rgba(243, 241, 235, 0.22);
  --gold: #b99a62;
  --danger: #a4312a;
  --success: #1e6a49;
  --font-display: "Fraunces", "Iowan Old Style", "Palatino", Georgia, serif;
  --font-body: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  --container: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--basalt);
  margin: 0;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.9rem, 6.6vw, 5.6rem);
}

h2 {
  font-size: clamp(2.1rem, 4.2vw, 3.6rem);
}

h3 {
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  letter-spacing: -0.01em;
}

em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--sea);
}

p {
  margin: 0;
}

.lead {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  line-height: 1.55;
  color: var(--muted);
  max-width: 54ch;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sea);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--basalt);
  color: var(--paper);
  padding: 10px 16px;
  z-index: 200;
}

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

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

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 26px;
  background: var(--basalt);
  color: var(--paper);
  border: 1px solid var(--basalt);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease);
}

.btn:hover {
  background: var(--sea);
  border-color: var(--sea);
}

.btn:hover svg {
  transform: translateX(4px);
}

.btn--outline {
  background: transparent;
  color: var(--basalt);
}

.btn--outline:hover {
  background: var(--basalt);
  color: var(--paper);
  border-color: var(--basalt);
}

.btn--paper {
  background: var(--paper);
  color: var(--basalt);
  border-color: var(--paper);
}

.btn--paper:hover {
  background: var(--white);
  border-color: var(--white);
}

.textlink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--basalt);
  text-decoration: none;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--basalt);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.textlink svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s var(--ease);
}

.textlink:hover {
  color: var(--sea);
  border-color: var(--sea);
}

.textlink:hover svg {
  transform: translateX(4px);
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--hair);
  transition: box-shadow 0.3s var(--ease);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 40px rgba(14, 27, 35, 0.08);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  gap: 24px;
}

.brand img {
  height: 58px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav a {
  position: relative;
  display: inline-block;
  padding: 8px 0;
  color: var(--basalt);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--sea);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav a:hover::after,
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav a[aria-current="page"] {
  color: var(--sea);
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 120;
  background: none;
  border: 1px solid var(--basalt);
  border-radius: 2px;
  padding: 10px 14px;
  color: var(--basalt);
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(40px, 7vw, 96px) 0 clamp(48px, 7vw, 104px);
}

.hero .container {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-copy .eyebrow {
  margin-bottom: 28px;
}

.hero-copy h1 {
  margin-bottom: 28px;
}

.hero-copy .lead {
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  align-items: center;
}

.compass {
  position: absolute;
  right: -6vw;
  top: -10vw;
  width: 52vw;
  max-width: 720px;
  color: var(--basalt);
  opacity: 0.045;
  pointer-events: none;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
}

.hero-visual .photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.hero-visual .stamp {
  position: absolute;
  left: -14%;
  bottom: -8%;
  width: 46%;
  padding: 6%;
  background: var(--white);
  box-shadow: 0 30px 60px rgba(14, 27, 35, 0.22);
  transform: rotate(-4deg);
  transition: transform 0.6s var(--ease);
}

.hero-visual:hover .stamp {
  transform: rotate(-1deg) translateY(-6px);
}

.hero-visual .stamp img {
  width: 100%;
}

.hero-visual .stamp span {
  display: block;
  margin-top: 10px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  text-align: center;
}

/* ---------- Landmark ribbon ---------- */

.ribbon {
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  padding: clamp(48px, 6vw, 88px) 0;
  background: var(--chalk);
}

.ribbon-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
}

.ribbon-head h2 {
  max-width: 14ch;
}

.ribbon-head p {
  max-width: 34ch;
  color: var(--muted);
}

.landmarks {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.landmarks a {
  display: block;
  text-decoration: none;
  color: var(--basalt);
}

.landmarks img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--white);
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
}

.landmarks a:hover img {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px rgba(14, 27, 35, 0.18);
}

.landmarks span {
  display: block;
  margin-top: 14px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ---------- Sections ---------- */

.section {
  padding: clamp(64px, 9vw, 136px) 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 32px 64px;
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 72px);
}

.section-head .lead {
  max-width: 48ch;
}

/* ---------- Collections ---------- */

.collections {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 48px);
}

.collection {
  display: flex;
  flex-direction: column;
}

.collection figure {
  margin: 0 0 26px;
  overflow: hidden;
  border-radius: 4px;
  background: var(--chalk);
}

.collection img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.collection:hover img {
  transform: scale(1.04);
}

.collection h3 {
  margin-bottom: 12px;
}

.collection p {
  color: var(--muted);
  margin-bottom: 22px;
  flex: 1;
  max-width: 40ch;
}

/* ---------- Custom orders band ---------- */

.band {
  position: relative;
  isolation: isolate;
  color: var(--paper);
  background: var(--basalt);
  overflow: hidden;
}

.band .bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  z-index: -1;
  filter: saturate(0.6);
}

.band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg, rgba(14, 27, 35, 0.92) 30%, rgba(14, 27, 35, 0.55));
}

.band .container {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
  gap: 48px;
  align-items: center;
  padding-top: clamp(72px, 10vw, 150px);
  padding-bottom: clamp(72px, 10vw, 150px);
}

.band h2 {
  color: var(--paper);
  margin-bottom: 20px;
}

.band p {
  font-size: 1.15rem;
  max-width: 44ch;
  color: rgba(243, 241, 235, 0.82);
}

.band .btn {
  justify-self: end;
}

/* ---------- FAQ ---------- */

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 48px 96px;
  align-items: start;
}

.faq-layout h2 {
  position: sticky;
  top: 120px;
}

.faq details {
  border-top: 1px solid var(--hair);
}

.faq details:last-child {
  border-bottom: 1px solid var(--hair);
}

.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 26px 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.8vw, 1.6rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--basalt);
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "";
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  background:
    linear-gradient(var(--sea), var(--sea)) center / 14px 1.5px no-repeat,
    linear-gradient(var(--sea), var(--sea)) center / 1.5px 14px no-repeat;
  transition: transform 0.3s var(--ease);
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq details p {
  color: var(--muted);
  padding: 0 0 28px;
  max-width: 58ch;
}

.faq a {
  color: var(--sea);
}

/* ---------- Testimonial ---------- */

.testimonial-section {
  background: var(--chalk);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}

.testimonial {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.testimonial blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 60, "WONK" 1;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--basalt);
  text-wrap: balance;
}

.testimonial blockquote::before {
  content: "\201C";
  display: block;
  font-style: normal;
  font-size: 5rem;
  line-height: 0.5;
  color: var(--gold);
  margin-bottom: 28px;
}

.testimonial figcaption {
  margin-top: 32px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sea);
}

/* ---------- Contact details ---------- */

.details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--hair);
}

.details > div {
  padding: 36px 32px 36px 0;
  border-right: 1px solid var(--hair);
}

.details > div + div {
  padding-left: 32px;
}

.details > div:last-child {
  border-right: 0;
}

.details .label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sea);
  margin-bottom: 14px;
}

.details .value {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.8vw, 1.6rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--basalt);
}

.details .value a {
  text-decoration: none;
  border-bottom: 1px solid var(--hair);
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}

.details .value a:hover {
  color: var(--sea);
  border-color: var(--sea);
}

.details .sub {
  margin-top: 6px;
  color: var(--muted);
}

/* ---------- Page banners ---------- */

.page-banner {
  position: relative;
  isolation: isolate;
  color: var(--paper);
  background: var(--basalt);
  overflow: hidden;
}

.page-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  z-index: -1;
}

.page-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(14, 27, 35, 0.35), rgba(14, 27, 35, 0.85));
}

.page-banner .container {
  padding-top: clamp(80px, 12vw, 180px);
  padding-bottom: clamp(48px, 6vw, 88px);
}

.page-banner .eyebrow {
  color: var(--gold);
  margin-bottom: 20px;
}

.page-banner h1 {
  color: var(--paper);
  margin-bottom: 18px;
}

.page-banner p {
  color: rgba(243, 241, 235, 0.8);
  max-width: 52ch;
  font-size: 1.15rem;
}

/* ---------- Products ---------- */

.toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--hair);
  margin-bottom: clamp(32px, 4vw, 56px);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-btn {
  padding: 10px 18px;
  border: 1px solid var(--hair);
  border-radius: 2px;
  background: transparent;
  color: var(--basalt);
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.filter-btn:hover {
  border-color: var(--basalt);
}

.filter-btn[aria-pressed="true"] {
  background: var(--basalt);
  border-color: var(--basalt);
  color: var(--paper);
}

.results-count {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 56px) clamp(20px, 3vw, 40px);
}

.product {
  display: flex;
  flex-direction: column;
}

.product figure {
  position: relative;
  margin: 0 0 20px;
  overflow: hidden;
  border-radius: 4px;
  background: var(--chalk);
}

.product img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.product:hover img {
  transform: scale(1.04);
}

.product .enquire {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  justify-content: center;
  padding: 14px;
  background: var(--paper);
  color: var(--basalt);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), background 0.3s var(--ease);
}

.product:hover .enquire,
.product:focus-within .enquire {
  opacity: 1;
  transform: translateY(0);
}

.product .enquire:hover {
  background: var(--basalt);
  color: var(--paper);
}

.product-cat {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sea);
  margin-bottom: 8px;
}

.product h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.product-desc {
  color: var(--muted);
  font-size: 0.97rem;
  flex: 1;
  margin-bottom: 14px;
}

.price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--basalt);
  font-variant-numeric: tabular-nums;
}

.price--poa {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.empty-state {
  grid-column: 1 / -1;
  padding: 72px 24px;
  text-align: center;
  border: 1px dashed var(--hair);
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.empty-state a {
  color: var(--sea);
}

/* ---------- Contact page ---------- */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 56px clamp(48px, 7vw, 120px);
  align-items: start;
}

.contact-intro h2 {
  margin-bottom: 20px;
}

.contact-intro .lead {
  margin-bottom: 40px;
}

.contact-intro .details {
  grid-template-columns: 1fr;
  border-top: 1px solid var(--hair);
}

.contact-intro .details > div {
  padding: 24px 0;
  border-right: 0;
  border-bottom: 1px solid var(--hair);
}

.contact-intro .details > div + div {
  padding-left: 0;
}

.field {
  position: relative;
  margin-bottom: 30px;
}

.field label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--basalt);
  margin-bottom: 8px;
}

.field .hint {
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: none;
  color: var(--muted);
}

.field input,
.field textarea {
  width: 100%;
  font: inherit;
  font-size: 1.1rem;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid var(--hair);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  transition: border-color 0.3s var(--ease);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-bottom: 1px solid var(--sea);
  box-shadow: 0 1px 0 var(--sea);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

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

.form-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 32px;
  margin-top: 8px;
}

.form-foot .note {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 36ch;
}

.form-status {
  margin-top: 24px;
  padding: 16px 20px;
  border-radius: 2px;
  display: none;
}

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

.form-status.is-error {
  display: block;
  background: #f6e6e4;
  color: var(--danger);
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--basalt);
  color: rgba(243, 241, 235, 0.78);
  padding: clamp(64px, 8vw, 112px) 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 3fr) minmax(0, 3fr);
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--hair-light);
}

.footer-brand img {
  width: 220px;
  margin-bottom: 24px;
}

.footer-brand p {
  max-width: 34ch;
}

.site-footer h3 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 10px;
}

.site-footer a {
  color: var(--paper);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
}

.site-footer a:hover {
  border-color: var(--paper);
}

.site-footer p {
  margin-bottom: 10px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: rgba(243, 241, 235, 0.5);
}

/* ---------- Reveal ---------- */

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

.js .reveal {
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.js .reveal:not(.is-visible) {
  opacity: 0.001;
  transform: translateY(24px);
}

/* ---------- Responsive ---------- */

@media (max-width: 1080px) {
  .landmarks {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

@media (max-width: 900px) {
  .hero .container {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 520px;
    margin: 24px 0 40px;
  }

  .hero-visual .stamp {
    left: -6%;
  }

  .compass {
    right: -30vw;
    top: -20vw;
    width: 90vw;
  }

  .ribbon-head,
  .section-head,
  .faq-layout,
  .band .container,
  .contact-layout {
    grid-template-columns: 1fr;
    display: grid;
  }

  .ribbon-head {
    gap: 12px;
  }

  .faq-layout h2 {
    position: static;
  }

  .band .btn {
    justify-self: start;
  }

  .collections {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .collection img {
    aspect-ratio: 4 / 3;
  }

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

  .details > div {
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--hair);
  }

  .details > div + div {
    padding-left: 0;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav {
    position: fixed;
    inset: 0;
    z-index: 110;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
    padding: 0 var(--gutter);
    background: var(--basalt);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 11vw, 3.6rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    text-transform: none;
    color: var(--paper);
    padding: 10px 0;
  }

  .nav a[aria-current="page"] {
    color: var(--gold);
  }

  .nav a::after {
    display: none;
  }

  .nav-toggle.is-open {
    color: var(--paper);
    border-color: var(--paper);
  }

  .brand img {
    height: 46px;
  }

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

  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 16px;
  }

  .product .enquire {
    opacity: 1;
    transform: none;
    position: static;
    margin-top: 12px;
    background: var(--chalk);
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 440px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }

  .js .reveal:not(.is-visible) {
    opacity: 1;
    transform: none;
  }
}
