@charset "UTF-8";
/* === tokens.scss === */
/* Ardglass theme. PageMotor 0.8.3. Documentary Magazine motif. */
/* GRT bridge: Design Options take priority, source design values fall back. */
:root {
  --f1: 47px;
  --f2: 37px;
  --f3: 29px;
  --f4: 23px;
  --f5: 18px;
  --f6: 14px;
  --g1: calc(73 / 47);
  --g2: calc(59 / 37);
  --g3: calc(47 / 29);
  --g4: calc(38 / 23);
  --g5: calc(31 / 18);
  --g6: calc(25 / 14);
  --x1: 50px;
  --x2: 31px;
  --x3: 19px;
  --x4: 12px;
  --x5: 7px;
  --x6: 4px;
  --phi: 1.61803398875;
  --font1: Newsreader;
  --font2: JetBrains Mono;
  --w-content: 720;
  --w-total: 1280;
  --gutter-full: 31px;
  --gutter-mobile: 19px;
  --bg1: #F1ECE3;
  --bg2: #E5DFD3;
  --c1: #1B1411;
  --c2: #5A4A40;
  --ca: #A86530;
  --border1: 1px solid #D4CDC0;
  --border2: 1px solid #B8AE9E;
  --border3: 1px solid #8B7E6C;
  --_font-headline: Newsreader;
  --_font-heading: Newsreader;
  --_font-impact: Newsreader;
  --_c-impact: #1B1411;
  --_font-caption: JetBrains Mono;
  --_c-caption: #5A4A40;
  --_font-byline: JetBrains Mono;
  --_f-byline: 14px;
  --_g-byline: calc(25 / 14);
  --_c-byline: #5A4A40;
  --_font-drop-cap: Newsreader;
  --_c-drop-cap: #A86530;
  --_bg-highlight: #F4DDA6;
  --_font-blockquote: Newsreader;
  --_c-blockquote: #1B1411;
  --_bg-blockquote: #F1ECE3;
  --_f-blockquote: 23px;
  --_g-blockquote: calc(38 / 23);
  --_bg-pre: #1B1411;
  --_c-pre: #E5DFD3;
  --_p-pre: 19px;
  --_padding-content-top: var(--x2);
  --_padding-content-bottom: var(--x1);
  --_list-style: disc;
  --_list-margin: 19px;
  --_list-nested-margin: 12px;
  --_list-item-margin: 7px;
  --_bg-callout: #E5EFE9;
  --_bg-callout-alert: #EAE3F0;
  --_bg-callout-note: #E1E8EC;
  --_c-callout: #1B1411;
  --_c-callout-alert: #6B3A8C;
  --_c-callout-note: #2A4A5A;
  --_p-callout: 19px;
  --_bg-button: #1B1411;
  --_c-button: #F1ECE3;
  --_bg-button-save: #297A3F;
  --_bg-button-action: #3A4A5A;
  --_bg-button-update: #6A45A8;
  --_bg-button-delete: #AC2A2A;
  --_c-button-save: #F1ECE3;
  --_c-button-action: #F1ECE3;
  --_c-button-update: #F1ECE3;
  --_c-button-delete: #F1ECE3;
  --_p-button-x: 19px;
  --_p-button-y: 12px;
  --_p-input: 12px;
  --_b-input: 1px solid #B8AE9E;
  --_p-textarea: 12px;
  --_b-textarea: 1px solid #B8AE9E;
  --_b-select: 1px solid #B8AE9E;
  --_c-required: #AC2A2A;
  --_p-bleed-top: 31px;
  --_p-bleed-bottom: 31px;
  --_m-bleed-top: 50px;
  --_m-bleed-bottom: 50px;
  --_m-caption: 12px;
  --_m-caption-h2-m: 7px;
  --_m-caption-h3: 7px;
  --_m-caption-h3-m: 4px;
}

/* === reset.scss === */
/* Reset */
* {
  padding: 0;
  margin: 0;
}

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

h1, h2, h3, h4 {
  font-weight: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  word-break: normal;
}

img, fieldset {
  border: 0;
}

abbr {
  text-decoration: none;
}

pre {
  overflow: auto;
  word-wrap: normal;
  tab-size: 4;
}

sub, sup {
  line-height: 0.5em;
}

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

iframe, embed, object {
  display: block;
  max-width: 100%;
}

button, input[type=submit] {
  cursor: pointer;
  overflow: visible;
}

/* === base.scss === */
/* Body and structural */
html {
  scroll-behavior: smooth;
  font-size: var(--f5);
  line-height: var(--g5);
  text-size-adjust: 100%;
}

body {
  font-family: var(--font1);
  font-size: var(--f5);
  line-height: var(--g5);
  color: var(--c1);
  background-color: var(--bg1);
  font-weight: 400;
  font-feature-settings: "kern", "liga";
  font-optical-sizing: auto;
  overflow-x: hidden;
}

::selection {
  background: var(--ca);
  color: var(--bg1);
}

::-moz-selection {
  background: var(--ca);
  color: var(--bg1);
}

.container {
  width: calc(100% - 2 * var(--gutter-mobile));
  max-width: var(--w-total);
  margin-inline: auto;
}

@media all and (min-width: 720px) {
  .container {
    width: calc(100% - 2 * var(--gutter-full));
  }
}
.section {
  padding-top: calc(var(--x1) * var(--phi));
  padding-bottom: calc(var(--x1) * var(--phi));
}

.text {
  max-width: var(--w-content);
}

/* === typography.scss === */
/* Common content elements -- global appearance only, no content-flow margins */
h1, h2, h3, h4 {
  font-family: var(--_font-heading);
  color: var(--c1);
  font-optical-sizing: auto;
}

h1 {
  font-size: var(--f1);
  line-height: var(--g1);
  font-weight: 500;
}

h2 {
  font-size: var(--f2);
  line-height: var(--g2);
  font-weight: 500;
}

h3 {
  font-size: var(--f3);
  line-height: var(--g3);
  font-weight: 500;
}

h4 {
  font-size: var(--f4);
  line-height: var(--g4);
  font-weight: 600;
}

p {
  font-size: var(--f5);
  line-height: var(--g5);
  color: inherit;
}

a {
  color: var(--ca);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition: text-decoration-color 200ms ease, color 200ms ease;
}

a:hover {
  text-decoration-color: var(--ca);
  color: var(--ca);
}

a:focus-visible {
  outline: 2px solid var(--ca);
  outline-offset: 3px;
}

sub, sup {
  color: var(--c2);
}

hr {
  border: var(--border3);
  border-width: 0 0 1px 0;
  margin: var(--x2) 0;
}

svg {
  width: var(--f5);
  height: var(--f5);
  vertical-align: text-bottom;
}

/* === page-content.scss === */
/* Dynamic page content scope -- content-flow margins live here */
.page-container + .page-container {
  margin-top: var(--x1);
}

.page-content {
  max-width: var(--w-content);
  padding-top: var(--_padding-content-top);
}

.page-content h1 {
  margin-bottom: var(--x2);
}

.page-content h2 {
  margin-top: var(--x1);
  margin-bottom: var(--x2);
}

.page-content h3 {
  margin-top: var(--x2);
  margin-bottom: var(--x3);
}

.page-content h4 {
  margin-bottom: var(--x4);
}

.page-content h1 + h2,
.page-content h2 + h3,
.page-content h1:first-child,
.page-content h2:first-child,
.page-content h3:first-child,
.page-content hr + h2 {
  margin-top: 0;
}

.page-content > :first-child {
  margin-top: 0;
}

.page-content > :last-child {
  margin-bottom: 0;
}

.page-content ul {
  list-style-type: var(--_list-style);
}

.page-content ul,
.page-content ol {
  margin-left: var(--_list-margin);
}

.page-content ul ul,
.page-content ul ol,
.page-content ol ul,
.page-content ol ol {
  margin-top: var(--_list-item-margin);
  margin-bottom: 0;
  margin-left: var(--_list-nested-margin);
}

.page-content li {
  margin-bottom: var(--_list-item-margin);
  font-size: var(--f5);
  line-height: var(--g5);
}

.page-content li:last-child {
  margin-bottom: 0;
}

.page-content .callout > :last-child {
  margin-bottom: 0;
}

.page-content .caption {
  margin-top: var(--_m-caption);
}

.page-content h1 + .caption,
.page-content h2 + .caption {
  margin-top: var(--_m-caption-h2-m);
}

.page-content h3 + .caption {
  margin-top: var(--_m-caption-h3-m);
  margin-bottom: var(--x3);
}

.page-content p,
.page-content ul,
.page-content ol,
.page-content blockquote,
.page-content pre,
.page-content img,
.page-content .callout,
.page-content .caption {
  margin-bottom: var(--x2);
}

.page-content p:last-child,
.page-content ul:last-child,
.page-content ol:last-child,
.page-content blockquote:last-child,
.page-content pre:last-child,
.page-content img:last-child,
.page-content .callout:last-child,
.page-content .caption:last-child {
  margin-bottom: 0;
}

.page-content blockquote {
  max-width: var(--w-content);
}

@media all and (min-width: 480px) {
  .page-content h1 + .caption,
  .page-content h2 + .caption {
    margin-top: var(--_m-caption);
  }
  .page-content h3 + .caption {
    margin-top: var(--_m-caption-h3);
  }
}
.page-title {
  font-family: var(--_font-headline);
}

.page-title:has(+ .byline) {
  margin-bottom: 0;
}

.page-title a {
  color: var(--c1);
}

.page-title a:hover {
  color: var(--ca);
}

.byline {
  font-family: var(--_font-byline);
  font-size: var(--_f-byline);
  line-height: var(--_g-byline);
  color: var(--_c-byline);
  margin-bottom: var(--x2);
}

.page-container,
.headline-area,
.page-content {
  display: flow-root;
}

.modular-content {
  display: flow-root;
}

.modular-content > :last-child {
  margin-bottom: 0;
}

.page-content + .modular-content {
  margin-top: var(--x2);
}

/* === forms.scss === */
/* Forms */
label,
form label,
.page-content label,
.field label {
  display: block;
  font-family: var(--font2);
  font-size: var(--f6);
  line-height: var(--g6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c2);
  margin-bottom: var(--x5);
  font-weight: 500;
}

label .required {
  font-weight: normal;
  color: var(--_c-required);
}

input,
textarea,
select {
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  font-family: var(--font1);
  font-size: var(--f5);
  line-height: 1em;
  font-weight: inherit;
  padding: var(--_p-input);
  background: var(--bg1);
  color: var(--c1);
  border: var(--_b-input);
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--ca);
  outline-offset: 0;
  border-color: var(--ca);
}

textarea {
  line-height: var(--g5);
  min-height: 8em;
  resize: vertical;
  padding: var(--_p-textarea);
  border: var(--_b-textarea);
}

select {
  border: var(--_b-select);
  width: auto;
}

input[type=checkbox],
input[type=radio] {
  display: inline-block;
  width: auto;
  margin-right: var(--x5);
  accent-color: var(--ca);
}

input[type=checkbox] + label,
input[type=radio] + label {
  display: inline;
  font-weight: normal;
  margin-left: var(--x6);
  user-select: none;
}

input[type=image],
input[type=submit] {
  width: auto;
}

form input,
form textarea,
form select,
form fieldset {
  margin-bottom: var(--x2);
}

fieldset {
  border: var(--border1);
  padding: var(--x3);
}

fieldset > legend,
form legend {
  font-family: var(--font2);
  font-size: var(--f6);
  line-height: var(--g6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c2);
  padding: 0 var(--x5);
  font-weight: 500;
}

/* === buttons.scss === */
/* Buttons */
button,
input[type=submit],
.button,
form input[type=submit],
form button[type=submit] {
  display: inline-block;
  width: auto;
  font-family: var(--font2);
  font-size: var(--f6);
  line-height: 1em;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  vertical-align: top;
  color: var(--_c-button);
  text-decoration: none;
  background-color: var(--_bg-button);
  padding: var(--_p-button-y) var(--_p-button-x);
  border: 1px solid var(--_bg-button);
  border-radius: 0;
  cursor: pointer;
  user-select: none;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
  appearance: none;
  -webkit-appearance: none;
}

button:hover,
input[type=submit]:hover,
.button:hover,
form input[type=submit]:hover,
form button[type=submit]:hover {
  background: var(--ca);
  color: var(--bg1);
  border-color: var(--ca);
  text-decoration: none;
}

button:focus-visible,
input[type=submit]:focus-visible,
.button:focus-visible,
form input[type=submit]:focus-visible,
form button[type=submit]:focus-visible {
  outline: 2px solid var(--ca);
  outline-offset: 3px;
}

button svg,
.button svg {
  vertical-align: inherit;
}

.button.save {
  color: var(--_c-button-save);
  background-color: var(--_bg-button-save);
  border-color: var(--_bg-button-save);
}

.button.save:hover {
  background: var(--ca);
  color: var(--bg1);
  border-color: var(--ca);
}

.button.action {
  color: var(--_c-button-action);
  background-color: var(--_bg-button-action);
  border-color: var(--_bg-button-action);
}

.button.action:hover {
  background: var(--ca);
  color: var(--bg1);
  border-color: var(--ca);
}

.button.update {
  color: var(--_c-button-update);
  background-color: var(--_bg-button-update);
  border-color: var(--_bg-button-update);
}

.button.update:hover {
  background: var(--ca);
  color: var(--bg1);
  border-color: var(--ca);
}

.button.delete {
  color: var(--_c-button-delete);
  background-color: var(--_bg-button-delete);
  border-color: var(--_bg-button-delete);
}

.button.delete:hover {
  background: var(--ca);
  color: var(--bg1);
  border-color: var(--ca);
}

.button.ghost {
  background: transparent;
  color: var(--c1);
  border-color: var(--c1);
}

.button.ghost:hover {
  background: var(--c1);
  color: var(--bg1);
  border-color: var(--c1);
}

.button.amber {
  background: var(--ca);
  border-color: var(--ca);
  color: var(--bg1);
}

.button.amber:hover {
  background: var(--c1);
  border-color: var(--c1);
  color: var(--bg1);
}

/* === callouts.scss === */
.callout {
  color: var(--_c-callout);
  background-color: var(--_bg-callout);
  padding: var(--_p-callout);
  border-left: 3px solid currentColor;
  border-radius: 0 var(--x4) var(--x4) 0;
  max-width: var(--w-content);
}

.callout.alert {
  color: var(--_c-callout-alert);
  background-color: var(--_bg-callout-alert);
}

.callout.note {
  color: var(--_c-callout-note);
  background-color: var(--_bg-callout-note);
}

/* === primitives.scss === */
/* Formatting primitives -- global appearance */
blockquote {
  font-family: var(--_font-blockquote);
  font-size: var(--_f-blockquote);
  line-height: var(--_g-blockquote);
  color: var(--_c-blockquote);
  background-color: var(--_bg-blockquote);
  font-weight: 400;
  font-style: normal;
  border-left: 3px solid var(--ca);
  padding-left: var(--x3);
}

blockquote > :last-child {
  margin-bottom: 0;
}

blockquote.pull {
  font-style: italic;
  font-size: var(--f2);
  line-height: var(--g2);
  border-left-color: var(--ca);
}

.cite,
blockquote + cite,
.maker-quote cite,
.page-content cite,
figcaption cite {
  display: block;
  font-family: var(--font2);
  font-size: var(--f6);
  line-height: var(--g6);
  font-style: normal;
  letter-spacing: 0.04em;
  color: var(--c2);
  margin-top: var(--x4);
  text-transform: uppercase;
}

code, pre, kbd {
  font-family: var(--font2);
  font-size: var(--f6);
  line-height: var(--g6);
}

code {
  background-color: rgba(0, 0, 0, 0.08);
  padding: var(--x6);
  border-radius: var(--x5);
  margin: 0 1px;
  line-height: 1em;
}

strong code {
  font-weight: normal;
}

pre {
  font-family: var(--font2);
  font-size: var(--f6);
  line-height: var(--g6);
  color: var(--_c-pre);
  background-color: var(--_bg-pre);
  padding: var(--x3);
  border-radius: 0;
  overflow-x: auto;
}

pre > code {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  background: transparent;
  padding: 0;
  color: inherit;
}

kbd {
  font-size: var(--f6);
  line-height: var(--g6);
  color: #4e4e4e;
  background-color: #f7f7f7;
  padding: var(--x6) var(--x5);
  border: 1px solid #ccc;
  border-radius: var(--x5);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2), 0 0 0 1px #fafafa inset, 0 0 0 1px #fff inset;
  margin: 0 1px;
}

.drop-cap {
  font-family: var(--_font-drop-cap);
  font-size: calc(var(--f5) * 4.2);
  line-height: 1em;
  font-style: italic;
  font-weight: 500;
  color: var(--_c-drop-cap);
  float: left;
  margin: 0.05em var(--x4) -0.1em 0;
}

.small {
  font-family: var(--_font-caption);
  font-size: var(--f6);
  line-height: var(--g6);
  color: var(--_c-caption);
}

.highlight {
  background-color: var(--_bg-highlight);
  padding: 0.05em 0;
  color: var(--c1);
}

.impact {
  font-family: var(--_font-impact);
  font-size: var(--f4);
  line-height: var(--g4);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--_c-impact);
  font-feature-settings: "lnum", "tnum";
}

.pop {
  font-family: var(--font1);
  font-style: italic;
  font-weight: 500;
  color: var(--ca);
}

.caption {
  font-family: var(--_font-caption);
  font-size: var(--f6);
  line-height: var(--g6);
  color: var(--_c-caption);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 400;
}

.caption code {
  font-size: var(--f6);
  line-height: var(--g6);
}

.center + .caption {
  text-align: center;
}

blockquote + .caption {
  padding-left: calc(var(--x3) + var(--x5));
}

@media all and (min-width: 480px) {
  .impact {
    font-size: var(--f3);
    line-height: var(--g3);
  }
  .left:not(.bar) {
    float: left;
    clear: both;
    margin-right: var(--x2);
  }
  .right:not(.bar) {
    float: right;
    clear: both;
    margin-left: var(--x2);
  }
}
/* Aspect-ratio helpers */
.aspect-16-9 {
  aspect-ratio: 16/9;
}

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

.aspect-3-2 {
  aspect-ratio: 3/2;
}

.aspect-1-1 {
  aspect-ratio: 1/1;
}

.aspect-2-3 {
  aspect-ratio: 2/3;
}

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

.aspect-9-16 {
  aspect-ratio: 9/16;
}

.aspect-4-5 {
  aspect-ratio: 4/5;
}

.image-placeholder {
  background: var(--bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font2);
  font-size: var(--f6);
  line-height: var(--g6);
  color: var(--c2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-eyebrow-row {
  display: flex;
  align-items: center;
  gap: var(--x4);
  margin-bottom: var(--x4);
}

/* === skip-link.scss === */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--c1);
  color: var(--bg1);
  padding: var(--x4) var(--x3);
  font-family: var(--font2);
  font-size: var(--f6);
  line-height: var(--g6);
  text-decoration: none;
}

.skip-link:focus {
  left: var(--gutter-mobile);
  top: var(--gutter-mobile);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* === visual-language.scss === */
/* Visual language marks */
.salmon-mark {
  width: 100%;
  height: auto;
  display: block;
  color: var(--ca);
}

.salmon-mark.scale-hero {
  width: 35%;
  max-width: 480px;
  margin: 0;
}

.salmon-mark.scale-pivot {
  width: 18%;
  max-width: 220px;
  margin: var(--x2) auto;
}

.salmon-mark.scale-footer {
  width: 100%;
  max-width: 240px;
}

.smoke-curl {
  width: 100%;
  max-width: 280px;
  height: auto;
  margin: var(--x1) auto;
  display: block;
  color: var(--c2);
}

.compass-mark {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: inline-block;
  color: var(--ca);
  vertical-align: middle;
}

.credit {
  font-family: var(--font2);
  font-size: var(--f6);
  line-height: var(--g6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c2);
  display: inline-flex;
  align-items: center;
  gap: var(--x4);
}

.credit .credit-coords {
  color: var(--c1);
  font-weight: 500;
}

/* === wordmark.scss === */
.wordmark {
  font-family: var(--font1);
  font-weight: 500;
  font-size: var(--f4);
  line-height: 1em;
  color: var(--c1);
  text-decoration: none;
  letter-spacing: -0.005em;
  display: inline-flex;
  align-items: baseline;
  gap: 0.3em;
  white-space: nowrap;
}

.wordmark:hover {
  color: var(--c1);
  text-decoration: none;
}

.wordmark .word-mark-place {
  font-family: var(--font2);
  font-size: var(--f6);
  line-height: var(--g6);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c2);
}

/* === header.scss === */
/* Shared components */
.header {
  background: var(--bg1);
  border-bottom: var(--border1);
  padding-top: var(--x3);
  padding-bottom: var(--x3);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--x3);
}

.nav-primary {
  display: flex;
  align-items: center;
  gap: var(--x3);
}

.nav-primary ul {
  list-style: none;
  margin: 0;
  margin-bottom: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: var(--x3);
  flex-wrap: nowrap;
}

.nav-primary a {
  font-family: var(--font2);
  font-size: var(--f6);
  line-height: 1em;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c1);
  text-decoration: none;
  padding: var(--x5) 0;
  white-space: nowrap;
  font-weight: 500;
}

.nav-primary a:hover {
  color: var(--ca);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  background: transparent;
  color: var(--c1);
  border: var(--border2);
  padding: var(--x5) var(--x4);
  font-family: var(--font2);
  font-size: var(--f6);
  line-height: 1em;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
}

@media all and (max-width: 720px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: var(--x5);
  }
  .nav-primary ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg1);
    border-bottom: var(--border1);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--x3) var(--gutter-mobile);
    z-index: 100;
  }
  .nav-primary ul.is-open {
    display: flex;
  }
  .nav-primary a {
    padding: var(--x4) 0;
    border-bottom: var(--border1);
    flex-shrink: 0;
  }
  .header {
    position: relative;
  }
}
/* === breadcrumbs.scss === */
.breadcrumbs {
  font-family: var(--font2);
  font-size: var(--f6);
  line-height: var(--g6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c2);
}

.breadcrumbs ol {
  list-style: none;
  margin: 0;
  margin-bottom: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--x5);
}

.breadcrumbs li::after {
  content: " / ";
  color: var(--c2);
  margin-left: var(--x5);
}

.breadcrumbs li:last-child::after {
  content: "";
}

.breadcrumbs li:last-child {
  color: var(--c1);
}

.breadcrumbs a {
  color: var(--c2);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 200ms ease, border-color 200ms ease;
}

.breadcrumbs a:hover {
  color: var(--ca);
  border-bottom-color: var(--ca);
}

.header-interior .container {
  flex-wrap: wrap;
  gap: var(--x3);
}

.header-interior .breadcrumbs {
  flex-shrink: 0;
}

/* === kicker.scss === */
.kicker {
  font-family: var(--font2);
  font-size: var(--f6);
  line-height: var(--g6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c2);
  font-weight: 500;
  margin: 0 0 var(--x4) 0;
  display: inline-block;
}

.kicker::before {
  content: "[ ";
  color: var(--ca);
}

.kicker::after {
  content: " ]";
  color: var(--ca);
}

.section-heading {
  font-size: var(--f1);
  line-height: var(--g1);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 0 var(--x2) 0;
  max-width: var(--w-content);
  font-feature-settings: "lnum";
}

.section-heading em {
  font-style: italic;
  color: var(--ca);
  font-weight: 500;
}

.section-deck {
  font-size: var(--f4);
  line-height: var(--g4);
  color: var(--c2);
  margin: 0 0 var(--x2) 0;
  max-width: var(--w-content);
  font-style: italic;
  font-weight: 400;
}

/* === hero.scss === */
/* Hero (Home) */
.hero {
  position: relative;
  background: var(--c1);
  color: var(--bg1);
  overflow: hidden;
  padding: 0;
  min-height: 86vh;
  display: flex;
  align-items: flex-end;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(27, 20, 16, 0.2) 0%, rgba(27, 20, 16, 0.2) 40%, rgba(27, 20, 16, 0.78) 100%);
}

.hero .container {
  position: relative;
  z-index: 1;
  padding-bottom: calc(var(--x1) * 1.4);
  padding-top: calc(var(--x1) * 6);
  width: calc(100% - 2 * var(--gutter-mobile));
}

@media all and (min-width: 720px) {
  .hero .container {
    width: calc(100% - 2 * var(--gutter-full));
  }
}
.hero-eyebrow {
  font-family: var(--font2);
  font-size: var(--f6);
  line-height: var(--g6);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bg2);
  margin: 0 0 var(--x3) 0;
  opacity: 0.92;
  display: inline-flex;
  align-items: center;
  gap: var(--x4);
}

.hero-headline {
  font-family: var(--font1);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(var(--f1), 8.4vw, var(--f1) * var(--phi));
  line-height: clamp(var(--g1), 8.5vw, var(--g1) * var(--phi));
  letter-spacing: -0.022em;
  color: var(--bg1);
  margin: 0 0 var(--x2) 0;
  max-width: 18ch;
}

.hero-headline .lede {
  display: block;
  font-style: italic;
  color: var(--bg1);
}

.hero-headline .roman {
  display: block;
  font-style: normal;
  color: var(--ca);
  font-weight: 500;
  font-size: 0.62em;
  line-height: 1.1;
  margin-top: var(--x4);
  letter-spacing: -0.01em;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--x2);
  align-items: center;
  margin-top: var(--x2);
  color: rgba(229, 223, 211, 0.86);
}

.hero-meta .credit {
  color: var(--bg2);
}

.hero-meta .credit .credit-coords {
  color: var(--bg1);
}

.hero-cta {
  margin-top: var(--x2);
  display: inline-flex;
  align-items: center;
  gap: var(--x3);
  flex-wrap: wrap;
}

.hero .salmon-mark {
  position: absolute;
  right: var(--gutter-full);
  top: 14%;
  width: 32%;
  max-width: 420px;
  opacity: 0.78;
  z-index: 1;
  color: var(--ca);
  pointer-events: none;
}

@media all and (max-width: 720px) {
  .hero .salmon-mark {
    display: none;
  }
  .hero {
    min-height: 72vh;
  }
}
/* === manifesto.scss === */
/* Manifesto */
.manifesto {
  background: var(--bg1);
  padding-top: calc(var(--x1) * var(--phi) * 1.2);
  padding-bottom: calc(var(--x1) * var(--phi) * 1.2);
}

.manifesto .container {
  max-width: var(--w-content);
}

.manifesto p {
  font-family: var(--font1);
  font-size: var(--f2);
  line-height: var(--g2);
  font-weight: 400;
  color: var(--c1);
  margin-bottom: var(--x2);
}

.manifesto p:last-child {
  margin-bottom: 0;
}

.manifesto p em {
  color: var(--ca);
  font-style: italic;
}

.manifesto-rule {
  width: 64px;
  height: 1px;
  background: var(--ca);
  margin: var(--x2) 0;
  border: 0;
}

/* === salmon.scss === */
/* Salmon section */
.salmon {
  background: var(--bg1);
  padding-bottom: calc(var(--x1) * var(--phi) * 0.4);
}

.salmon .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--x2);
  align-items: start;
}

@media all and (min-width: 1024px) {
  .salmon .container {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: calc(var(--x1) * 1.1);
  }
}
.salmon-body p {
  font-size: var(--f4);
  line-height: var(--g4);
  color: var(--c1);
  margin-bottom: var(--x2);
  max-width: var(--w-content);
  font-weight: 400;
}

.salmon-body p:last-child {
  margin-bottom: 0;
}

.salmon-body p strong {
  color: var(--ca);
  font-weight: 500;
}

.salmon-figure {
  margin: 0;
  position: relative;
}

.salmon-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.salmon-figure figcaption {
  margin-top: var(--x4);
}

/* === process.scss === */
/* Process (3 days on ink) */
.process {
  background: var(--c1);
  color: var(--bg1);
  padding-top: 0;
  padding-bottom: 0;
}

.process-intro {
  background: var(--c1);
  padding-top: calc(var(--x1) * var(--phi) * 1.1);
  padding-bottom: var(--x1);
}

.process-intro .container {
  max-width: var(--w-total);
}

.process-intro .kicker {
  color: var(--bg2);
}

.process-intro .kicker::before,
.process-intro .kicker::after {
  color: var(--ca);
}

.process-intro .section-heading {
  color: var(--bg1);
  max-width: 22ch;
}

.process-intro .section-heading em {
  color: var(--ca);
}

.process-intro .section-deck {
  color: rgba(229, 223, 211, 0.78);
}

.days {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--x1);
  margin-top: var(--x1);
}

@media all and (min-width: 720px) {
  .days {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: calc(var(--x1) * 0.8);
  }
}
.day {
  display: flex;
  flex-direction: column;
  gap: var(--x3);
  padding-right: var(--x2);
  border-top: 1px solid rgba(241, 236, 227, 0.22);
  padding-top: var(--x3);
}

.day-number {
  font-family: var(--font1);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(var(--f1), 12vw, var(--f1) * var(--phi));
  line-height: clamp(var(--g1), 12vw, var(--g1) * var(--phi));
  letter-spacing: -0.03em;
  color: var(--ca);
  margin: 0;
}

.day-label {
  font-family: var(--font2);
  font-size: var(--f6);
  line-height: var(--g6);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(229, 223, 211, 0.7);
  margin: 0 0 var(--x5) 0;
}

.day-title {
  font-family: var(--font1);
  font-size: var(--f3);
  line-height: var(--g3);
  font-weight: 500;
  color: var(--bg1);
  margin: 0 0 var(--x4) 0;
}

.day-body {
  font-size: var(--f5);
  line-height: var(--g5);
  color: rgba(229, 223, 211, 0.86);
  margin: 0;
  max-width: 32ch;
}

.process-photo {
  background: var(--c1);
  padding-top: 0;
  padding-bottom: 0;
}

.process-photo .full-bleed-figure {
  margin: 0;
  position: relative;
}

.process-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.process-photo figcaption {
  position: absolute;
  bottom: var(--gutter-full);
  left: var(--gutter-full);
  background: rgba(27, 20, 17, 0.78);
  color: var(--bg1);
  padding: var(--x4) var(--x3);
  font-family: var(--font2);
  font-size: var(--f6);
  line-height: var(--g6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.process-outro {
  background: var(--c1);
  color: var(--bg1);
  padding-top: var(--x1);
  padding-bottom: calc(var(--x1) * var(--phi) * 1.1);
}

.process-outro .container {
  max-width: var(--w-content);
}

.process-outro p {
  font-family: var(--font1);
  font-size: var(--f3);
  line-height: var(--g3);
  font-weight: 400;
  color: var(--bg1);
  font-style: italic;
}

.process-outro p em {
  color: var(--ca);
}

/* === maker.scss === */
/* Maker */
.maker {
  background: var(--bg2);
  padding-top: calc(var(--x1) * var(--phi) * 1.1);
  padding-bottom: calc(var(--x1) * var(--phi) * 1.1);
}

.maker .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--x2);
  align-items: center;
}

@media all and (min-width: 1024px) {
  .maker .container {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: calc(var(--x1) * 1.2);
  }
}
.maker-quote .kicker {
  margin-bottom: var(--x3);
}

.maker-quote blockquote {
  font-family: var(--font1);
  font-style: italic;
  font-weight: 400;
  font-size: var(--f2);
  line-height: var(--g2);
  color: var(--c1);
  border-left: none;
  padding-left: 0;
  margin: 0;
  max-width: 22ch;
  background: transparent;
}

.maker-quote blockquote em {
  font-style: italic;
  color: var(--ca);
}

.maker-quote cite {
  margin-top: var(--x2);
}

.maker-figure {
  margin: 0;
  position: relative;
}

.maker-figure video,
.maker-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.maker-figure figcaption {
  margin-top: var(--x4);
}

/* === place.scss === */
/* Place (full-bleed harbour) */
.place {
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--c1);
  color: var(--bg1);
  overflow: hidden;
}

.place .full-bleed-figure {
  margin: 0;
  position: relative;
  width: 100%;
}

.place .full-bleed-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.place .place-overlay {
  position: relative;
  margin-top: -1px;
  background: var(--c1);
  color: var(--bg1);
  padding-top: calc(var(--x1) * var(--phi));
  padding-bottom: calc(var(--x1) * var(--phi));
}

.place .place-overlay .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--x2);
}

@media all and (min-width: 720px) {
  .place .place-overlay .container {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: calc(var(--x1) * 1.2);
    align-items: start;
  }
}
.place .kicker {
  color: var(--bg2);
  margin-bottom: var(--x3);
}

.place .section-heading {
  color: var(--bg1);
}

.place .section-heading em {
  color: var(--ca);
}

.place-body p {
  font-size: var(--f4);
  line-height: var(--g4);
  color: rgba(229, 223, 211, 0.92);
  margin: 0 0 var(--x2) 0;
  max-width: 36ch;
}

.place-body p:last-child {
  margin-bottom: 0;
}

.place-coords {
  font-family: var(--font2);
  font-size: var(--f5);
  line-height: var(--g5);
  color: var(--bg1);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: var(--x3);
  margin-top: var(--x2);
  border-top: 1px solid rgba(229, 223, 211, 0.22);
  padding-top: var(--x3);
}

.place-coords .compass-mark {
  color: var(--ca);
  width: 32px;
  height: 32px;
}

.place-coords .coord-block {
  display: flex;
  flex-direction: column;
  gap: var(--x5);
}

.place-coords .coord-line {
  font-family: var(--font2);
  font-size: var(--f6);
  line-height: var(--g6);
  letter-spacing: 0.06em;
}

.place-coords .coord-label {
  color: rgba(229, 223, 211, 0.7);
  text-transform: uppercase;
  font-size: var(--f6);
  line-height: var(--g6);
  letter-spacing: 0.1em;
}

/* === range.scss === */
/* Range (editorial product list) */
.range {
  background: var(--bg1);
  padding-top: calc(var(--x1) * var(--phi) * 1.2);
  padding-bottom: calc(var(--x1) * var(--phi) * 1.2);
}

.range .container {
  max-width: var(--w-total);
}

.range-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--x2);
  margin-bottom: var(--x1);
}

@media all and (min-width: 1024px) {
  .range-intro {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: calc(var(--x1) * 1.2);
    align-items: end;
  }
}
.range-list {
  list-style: none;
  margin: 0;
  margin-bottom: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.range-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--x3);
  padding: var(--x2) 0;
  border-top: var(--border2);
  align-items: center;
}

.range-item:last-child {
  border-bottom: var(--border2);
}

@media all and (min-width: 720px) {
  .range-item {
    grid-template-columns: minmax(0, 0.4fr) minmax(0, 1.2fr) minmax(0, 0.7fr) minmax(0, auto);
    gap: var(--x2);
  }
}
.range-item-image {
  width: 100%;
  max-width: 180px;
  aspect-ratio: 1/1;
  margin: 0;
  background: var(--bg2);
  overflow: hidden;
}

.range-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.range-item-text h3 {
  font-family: var(--font1);
  font-size: var(--f3);
  line-height: var(--g3);
  font-weight: 500;
  color: var(--c1);
  margin: 0 0 var(--x5) 0;
}

.range-item-text h3 em {
  font-style: italic;
  color: var(--ca);
}

.range-item-text p {
  font-size: var(--f5);
  line-height: var(--g5);
  color: var(--c2);
  margin: 0;
  max-width: 38ch;
}

.range-item-price {
  font-family: var(--font1);
  font-size: var(--f2);
  line-height: var(--g2);
  font-weight: 500;
  color: var(--c1);
  font-feature-settings: "lnum", "tnum";
  letter-spacing: -0.01em;
}

.range-item-price .price-period {
  display: block;
  font-family: var(--font2);
  font-size: var(--f6);
  line-height: var(--g6);
  font-weight: 400;
  color: var(--c2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: var(--x5);
}

.range-item-cta {
  display: flex;
  justify-content: flex-start;
}

/* === final-cta.scss === */
/* Final CTA */
.final-cta {
  background: var(--bg2);
  padding-top: calc(var(--x1) * var(--phi) * 1.2);
  padding-bottom: calc(var(--x1) * var(--phi) * 1.2);
  position: relative;
  overflow: hidden;
}

.final-cta .container {
  max-width: var(--w-content);
  position: relative;
  z-index: 1;
}

.final-cta .smoke-curl {
  margin: 0 0 var(--x2) 0;
}

.final-cta h2 {
  font-family: var(--font1);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(var(--f1), 6vw, var(--f1) * var(--phi));
  line-height: clamp(var(--g1), 6.5vw, var(--g1) * var(--phi));
  letter-spacing: -0.02em;
  margin: 0 0 var(--x2) 0;
  color: var(--c1);
}

.final-cta h2 em {
  font-style: italic;
  color: var(--ca);
}

.final-cta p {
  font-size: var(--f4);
  line-height: var(--g4);
  color: var(--c2);
  margin: 0 0 var(--x2) 0;
  max-width: 42ch;
}

.final-cta-form {
  display: flex;
  flex-wrap: wrap;
  gap: var(--x4);
  align-items: stretch;
  margin: var(--x2) 0;
  max-width: 540px;
}

.final-cta-form input[type=email] {
  flex: 1 1 220px;
  margin-bottom: 0;
}

.final-cta-form .button {
  flex: 0 0 auto;
}

.final-cta-stamp {
  font-family: var(--font2);
  font-size: var(--f6);
  line-height: var(--g6);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c1);
  margin-top: var(--x1);
  padding: var(--x3);
  border: 1px solid var(--c1);
  display: inline-block;
}

.final-cta-stamp span {
  display: block;
}

.final-cta-stamp span:nth-child(1) {
  font-weight: 500;
}

.final-cta-stamp span:nth-child(2) {
  color: var(--c2);
  margin-top: var(--x6);
}

.final-cta-stamp span:nth-child(3) {
  color: var(--ca);
  margin-top: var(--x5);
}

.final-cta .salmon-mark {
  position: absolute;
  right: -3%;
  bottom: -8%;
  width: 28%;
  max-width: 380px;
  opacity: 0.16;
  color: var(--c1);
  pointer-events: none;
  z-index: 0;
}

@media all and (max-width: 720px) {
  .final-cta .salmon-mark {
    display: none;
  }
}
/* Smoke-curl divider */
.divider {
  background: var(--bg1);
  padding: var(--x1) 0;
}

.divider .smoke-curl {
  color: var(--c2);
  opacity: 0.5;
}

/* === page-template.scss === */
/* Page template (Journal) */
.page-header {
  background: var(--bg1);
  padding-top: calc(var(--x1) * var(--phi) * 0.9);
  padding-bottom: var(--x2);
}

.page-header .container {
  max-width: var(--w-total);
}

.page-header h1 {
  font-family: var(--font1);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(var(--f1), 5.4vw, var(--f1) * var(--phi));
  line-height: clamp(var(--g1), 5.7vw, var(--g1) * var(--phi));
  letter-spacing: -0.018em;
  color: var(--c1);
  max-width: 22ch;
  margin: var(--x4) 0 var(--x2) 0;
}

.page-header h1 em {
  color: var(--ca);
  font-style: italic;
}

.page-header .lede {
  font-family: var(--font1);
  font-size: var(--f3);
  line-height: var(--g3);
  font-weight: 400;
  color: var(--c2);
  max-width: var(--w-content);
  margin: 0;
  font-style: italic;
}

.page-body {
  background: var(--bg1);
  padding-top: var(--x1);
  padding-bottom: calc(var(--x1) * var(--phi) * 1.1);
}

.page-body .container {
  max-width: var(--w-total);
}

.page-body .page-content {
  max-width: var(--w-content);
}

.page-body .page-content h2,
.page-body .page-content h3 {
  font-family: var(--font1);
  font-weight: 500;
  letter-spacing: -0.005em;
}

.page-body .page-content h2 {
  font-size: var(--f2);
  line-height: var(--g2);
}

.page-body .page-content h3 {
  font-size: var(--f3);
  line-height: var(--g3);
}

/* === shop.scss === */
/* Shop template. Reuses .range (range-list, range-item), .page-header, .breadcrumbs, */
/* and .header-interior — no shop-specific selectors required by the source design. */
/* === product.scss === */
/* Product template. Reuses .salmon (salmon-body, salmon-figure), .callout, */
/* .page-header, and .final-cta-form — no product-specific selectors required. */
/* === about.scss === */
/* About template. Reuses .salmon, .maker, .process (days), .place, .drop-cap, */
/* and .pull blockquote primitive — no about-specific selectors required. */
/* === contact.scss === */
/* Contact template. Reuses .salmon, .callout.note, .final-cta-form, plus form */
/* primitives (.field label, input, textarea) — no contact-specific selectors required. */
/* === error.scss === */
/* Error template. The Ardglass source design ships no error/404 template, */
/* so this partial reserves the hook declared by theme.php::scss_includes() and */
/* adds no rules. Error pages inherit from .page-header / .page-body. */
/* === footer.scss === */
.footer {
  background: var(--c1);
  color: var(--bg2);
  padding-top: var(--x1);
  padding-bottom: var(--x2);
  position: relative;
}

.footer .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--x2);
}

.footer .footer-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--x3);
}

@media all and (min-width: 720px) {
  .footer .footer-cols {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}
.footer h4 {
  color: var(--bg2);
  font-family: var(--font2);
  font-size: var(--f6);
  line-height: var(--g6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0 0 var(--x4) 0;
}

.footer p,
.footer li {
  color: rgba(229, 223, 211, 0.85);
  font-size: var(--f6);
  line-height: var(--g6);
}

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

.footer ul li {
  margin-bottom: var(--x5);
}

.footer a {
  color: rgba(229, 223, 211, 0.85);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease, color 200ms ease;
}

.footer a:hover {
  color: var(--bg2);
  border-bottom-color: var(--ca);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--x3);
  padding-top: var(--x3);
  border-top: 1px solid rgba(229, 223, 211, 0.18);
  font-family: var(--font2);
  font-size: var(--f6);
  line-height: var(--g6);
  letter-spacing: 0.04em;
}

.footer-bottom p {
  font-family: inherit;
  font-size: var(--f6);
  line-height: var(--g6);
}

.footer-mark {
  position: absolute;
  right: var(--gutter-full);
  top: var(--x1);
  width: 22%;
  max-width: 240px;
  opacity: 0.12;
  pointer-events: none;
}

/* === bleed.scss === */
/* Bleeds */
.bleed {
  padding-top: var(--_p-bleed-top);
  padding-bottom: var(--_p-bleed-bottom);
  margin-top: var(--_m-bleed-top);
  margin-bottom: var(--_m-bleed-bottom);
}

.bleed.amber {
  background: hsl(30, 100%, 90%);
  color: hsl(30, 100%, 22%);
}

.bleed.amber a {
  color: hsl(30, 100%, 22%);
  border-bottom: 1px solid currentColor;
}

.bleed.steel {
  background: hsl(210, 22%, 88%);
  color: hsl(210, 35%, 22%);
}

.bleed.steel a {
  color: hsl(210, 35%, 22%);
  border-bottom: 1px solid currentColor;
}

.bleed p,
.bleed h2,
.bleed h3,
.bleed li,
.bleed .caption,
.bleed .small,
.bleed blockquote,
.bleed cite {
  color: inherit;
}

/* === reveal.scss === */
/* Reveal-on-scroll utility */
@media all and (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 700ms ease, transform 700ms ease;
    will-change: opacity, transform;
  }
  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal.delay-1 {
    transition-delay: 90ms;
  }
  .reveal.delay-2 {
    transition-delay: 180ms;
  }
  .reveal.delay-3 {
    transition-delay: 270ms;
  }
  .reveal.delay-4 {
    transition-delay: 360ms;
  }
  .button.amber {
    animation: amber-breathe 3.2s ease-in-out infinite;
  }
}
@keyframes amber-breathe {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(168, 101, 48, 0);
    transform: translateY(0);
  }
  50% {
    box-shadow: 0 8px 24px -4px rgba(168, 101, 48, 0.42);
    transform: translateY(-3px);
  }
}
@media all and (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .button.amber {
    animation: none;
    transform: none;
    box-shadow: none;
  }
  html {
    scroll-behavior: auto;
  }
}