/* reset */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

/* tokens */

:root {
  --lime: #b5ff2d;
  --lime-ink: #446600;
  
  --amber: #f0c729;
  --dark: #111;
  
  --ink-dark: #111;

  --page: #f4f4ef;
  --white: #fff;
  --card: #eaeae5;

  --ink: #111;
  --ink-mid: #383838;
  --ink-soft: #5a5a5a;

  --rule: #d0d0cb;
  --rule-dark: rgba(255, 255, 255, .10);

  --sm: 1rem;
  --md: 2rem;
  --lg: 3rem;
  --xl: 4rem;
  --xxl: 6rem;

  --head: 'Instrument Serif', serif;
  --body: 'Inter', system-ui, sans-serif;
}

body {
  background: var(--page);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--head);
  font-weight: 400;
  
  line-height: 1.05;
  letter-spacing: -.02em;
}

h2,
h3,
h4 {
  text-transform: uppercase;
  letter-spacing: -.01em;
}

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

address {
  font-style: normal;
}

strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

a:link {
  color: var(--ink);
  text-decoration: none;
}

a:visited {
  color: var(--ink-mid);
}

a:hover {
  opacity: .75;
}

a:active {
  color: var(--lime-ink);
}

a:focus-visible {
  outline: 3px solid var(--lime-ink);
  outline-offset: 3px;
  border-radius: 2px;
}

/* skip link */

body>a:first-child {
  position: absolute;
  top: -100%;
  left: var(--sm);
  background: var(--lime);
  color: var(--dark);
  padding: .75rem 1.5rem;
  font-weight: 800;
  z-index: 9999;
  border-radius: 0 0 6px 6px;
  transition: top .2s;
  text-decoration: none;
}

body>a:first-child:focus {
  top: 0;
}

body>a:first-child:link,
body>a:first-child:visited {
  color: var(--dark);
}

body>a:first-child:focus-visible {
  outline: 3px solid var(--dark);
  outline-offset: 2px;
}

/* header */

body>header {
  background: var(--dark);
  padding: .8rem var(--sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sm);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--lime);
}

body>header>a {
  display: flex;
}

body>header>a:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
  border-radius: 3px;
}

body>header img {
  height: 65px;
  width: auto;
}

body>header nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .25rem;
}

body>header nav a {
  display: block;
  padding: .5rem .9rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: background .15s, color .15s;
}

body>header nav a:link {
  color: rgba(255, 255, 255, .85);
}

body>header nav a:visited {
  color: rgba(255, 255, 255, .75);
}

body>header nav a:hover {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  opacity: 1;
}

body>header nav a:active {
  color: var(--lime);
}

body>header nav a:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 2px;
  border-radius: 3px;
}

body>header nav a[aria-current="page"] {
  background: var(--lime);
  color: var(--dark);
}

body>header nav a[aria-current="page"]:visited {
  color: var(--dark);
}

body>header nav a[aria-current="page"]:hover {
  background: #9ddd1a;
  opacity: 1;
}

/* footer */

footer {
  background: var(--dark);
  border-top: 4px solid var(--lime);
}

footer>section:first-of-type {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--lg);
  padding: var(--xl) var(--sm);
  border-bottom: 1px solid var(--rule-dark);
}

footer>section:first-of-type>section:first-of-type>h2 {
  font-family: var(--head);
  font-size: clamp(3.5rem, 10vw, 6rem);
  font-weight: 900;
  line-height: .85;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -.02em;
  margin-bottom: var(--sm);
}

footer>section:first-of-type>section:first-of-type>h2 em {
  font-style: normal;
  color: var(--lime);
}

footer>section:first-of-type>section:first-of-type>p {
  font-size: .92rem;
  color: rgba(255, 255, 255, .85);

  line-height: 1.75;
  max-width: 320px;
  margin-bottom: var(--md);
}

footer>section:first-of-type>section:first-of-type>a {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--lime);
  padding: .75rem 1.5rem;
  border-radius: 4px;
  font-weight: 800;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: background .15s;
}

footer>section:first-of-type>section:first-of-type>a:link {
  color: var(--dark);
}

footer>section:first-of-type>section:first-of-type>a:visited {
  color: var(--dark);
}

footer>section:first-of-type>section:first-of-type>a:hover {
  background: #9ddd1a;
  opacity: 1;
  color: var(--dark);
}

footer>section:first-of-type>section:first-of-type>a:active {
  background: var(--amber);
  color: var(--dark);
}

footer>section:first-of-type>section:first-of-type>a:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

footer address {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

footer h3 {
  font-size: .7rem;
  font-weight: 700;
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-family: var(--body);
  margin-bottom: .75rem;
}

footer address p {
  font-size: .9rem;
  color: rgba(255, 255, 255, .85);
  line-height: 1.7;
}

footer address a:link {
  color: #fff;
  font-weight: 700;
}

footer address a:visited {
  color: rgba(255, 255, 255, .85);
}

footer address a:hover {
  color: var(--lime);
  opacity: 1;
}

footer address a:active {
  color: var(--amber);
}

footer address a:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 2px;
  border-radius: 2px;
}

#shop-status {
  display: inline-block;
  padding: .22rem .75rem;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 700;
  margin-bottom: .75rem;
}

.status-open {
  background: rgba(181, 255, 45, .15);
  color: #b5ff2d;
  border: 1px solid rgba(181, 255, 45, .35);
}

.status-closed {
  background: rgba(220, 60, 60, .15);
  color: #ff9090;
  border: 1px solid rgba(220, 60, 60, .35);
}

#opening-times {
  padding: 0;
}

#opening-times li {
  display: flex;
  justify-content: space-between;
  padding: .55rem 0;
  font-size: .9rem;
  color: rgba(255, 255, 255, .85);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

#opening-times li:last-child {
  border-bottom: 0;
}

#opening-times li.today {
  color: #fff;
  font-weight: 700;
  padding-left: .6rem;
  border-left: 3px solid var(--lime);
}

footer>section:last-of-type {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sm);
  padding: var(--sm) var(--sm) var(--md);
  text-align: center;
}

footer nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .3rem;
}

footer nav li a {
  display: block;
  padding: .35rem .9rem;
  border-radius: 3px;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  border: 1px solid rgba(255, 255, 255, .15);
  transition: border-color .15s, color .15s;
}

footer nav li a:link {
  color: rgba(255, 255, 255, .85);
}

footer nav li a:visited {
  color: rgba(255, 255, 255, .70);
}

footer nav li a:hover {
  border-color: var(--lime);
  color: var(--lime);
  opacity: 1;
}

footer nav li a:active {
  color: var(--amber);
}

footer nav li a:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 2px;
}

footer small {
  font-size: .75rem;
  color: rgba(255, 255, 255, .65);
}

/* forms */

form {
  display: flex;
  flex-direction: column;
  gap: var(--sm);
}

fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sm);
}

form label {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--ink-mid);
  margin-bottom: .3rem;
}

form p {
  display: flex;
  flex-direction: column;
}

form p>span {
  font-size: .76rem;
  color: var(--ink-soft);
  margin-top: .2rem;
}

input,
textarea {
  background: var(--white);
  border: 1.5px solid var(--rule);
  color: var(--ink);
  padding: .85rem var(--sm);
  border-radius: 4px;
  font-family: var(--body);
  font-size: 1rem;
  width: 100%;
  transition: border-color .15s;
}

input:focus,
textarea:focus {
  border-color: var(--lime-ink);
  outline: none;
  box-shadow: 0 0 0 3px rgba(68, 102, 0, .12);
}

textarea {
  height: 130px;
  resize: vertical;
}

button[type="submit"] {
  background: var(--lime);
  color: var(--dark);
  border: 0;
  padding: .95rem var(--md);
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-size: .95rem;
  font-family: var(--body);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  transition: background .15s, transform .1s;
}

button[type="submit"]:hover {
  background: #9ddd1a;
}

button[type="submit"]:active {
  transform: scale(.98);
}

button[type="submit"]:focus-visible {
  outline: 3px solid var(--dark);
  outline-offset: 3px;
}

body[data-page="home"] main>section:first-of-type {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body[data-page="home"] main>section:first-of-type>figure {
  position: absolute;
  inset: 0;
  margin: 0;
  z-index: 0;
}

body[data-page="home"] main>section:first-of-type>figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .50;
  display: block;
}

body[data-page="home"] main>section:first-of-type>figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(17, 17, 17, .85) 0%,
      rgba(17, 17, 17, .55) 45%,
      rgba(17, 17, 17, .40) 100%);
}

body[data-page="home"] main>section:first-of-type>article {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 120px var(--sm) 0;
}

/* Hero inner header */
body[data-page="home"] main>section:first-of-type>article>header {
  width: 100%;
  background: none;
}

body[data-page="home"] main>section:first-of-type>article>aside {
  margin-top: var(--md);
  width: 100%;
}

body[data-page="home"] main>section:first-of-type>article>header>p {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, .28);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .20em;
  color: rgba(255, 255, 255, .85);
  margin-bottom: var(--md);
  font-family: var(--body);
}

body[data-page="home"] main>section:first-of-type h1 {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: clamp(3.5rem, 11vw, 10rem);
  line-height: .90;
  color: #fff;
  letter-spacing: -.02em;
  text-transform: none;
}

body[data-page="home"] main>section:first-of-type h1 em {
  font-style: italic;
  color: var(--lime);
  display: block;
}

body[data-page="home"] main>section:first-of-type>article>aside>p {
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, .85);
  max-width: 28rem;
  margin-bottom: var(--md);
}

body[data-page="home"] main>section:first-of-type>article>aside>nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

body[data-page="home"] main>section:first-of-type>article>aside>nav>a:first-child {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lime);
  padding: 12px 24px;
  border-radius: 999px;
  font-family: var(--body);
  font-weight: 500;
  font-size: .9rem;
  transition: transform .2s;
}

body[data-page="home"] main>section:first-of-type>article>aside>nav>a:first-child:link {
  color: var(--ink-dark);
}

body[data-page="home"] main>section:first-of-type>article>aside>nav>a:first-child:visited {
  color: var(--ink-dark);
}

body[data-page="home"] main>section:first-of-type>article>aside>nav>a:first-child:hover {
  transform: scale(1.02);
  opacity: 1;
  color: var(--ink-dark);
}

body[data-page="home"] main>section:first-of-type>article>aside>nav>a:first-child:active {
  background: var(--amber);
  color: var(--ink-dark);
}

body[data-page="home"] main>section:first-of-type>article>aside>nav>a:first-child:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

/* Secondary CTA  */
body[data-page="home"] main>section:first-of-type>article>aside>nav>a:last-child {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, .40);
  padding: 12px 24px;
  border-radius: 999px;
  font-family: var(--body);
  font-weight: 500;
  font-size: .9rem;
  transition: background .2s;
}

body[data-page="home"] main>section:first-of-type>article>aside>nav>a:last-child:link {
  color: #fff;
}

body[data-page="home"] main>section:first-of-type>article>aside>nav>a:last-child:visited {
  color: rgba(255, 255, 255, .85);
}

body[data-page="home"] main>section:first-of-type>article>aside>nav>a:last-child:hover {
  background: rgba(247, 243, 232, .10);
  opacity: 1;
  color: #fff;
}

body[data-page="home"] main>section:first-of-type>article>aside>nav>a:last-child:active {
  color: var(--lime);
}

body[data-page="home"] main>section:first-of-type>article>aside>nav>a:last-child:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

body[data-page="home"] main>section:first-of-type>dl {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-top: 40px;
  padding-bottom: 56px;
  margin: 0 var(--sm);
  gap: 32px 24px;
}

body[data-page="home"] main>section:first-of-type dl>div {
  text-align: left;
}

body[data-page="home"] main>section:first-of-type dt {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: #fff;
  line-height: 1;
  display: block;
}

body[data-page="home"] main>section:first-of-type dd {
  display: block;
  margin-top: 4px;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: rgba(255, 255, 255, .65);
}

body[data-page="home"] main>address {
  background: var(--page);
  border-bottom: 1px solid var(--rule);
  padding: 1rem var(--sm);
}

body[data-page="home"] main>address>ul {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  list-style: none;
}

body[data-page="home"] main>address li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .88rem;
  color: var(--ink-mid);
  
  font-weight: 600;
}

body[data-page="home"] main>address li svg {
  flex-shrink: 0;
  color: var(--lime-ink);
}

body[data-page="home"] main>address li a:link {
  color: var(--ink);
  font-weight: 700;
}

body[data-page="home"] main>address li a:visited {
  color: var(--ink-mid);
}

body[data-page="home"] main>address li a:hover {
  color: var(--lime-ink);
  opacity: 1;
}

body[data-page="home"] main>address li a:active {
  color: var(--lime-ink);
}

body[data-page="home"] main>address li a:focus-visible {
  outline: 3px solid var(--lime-ink);
  outline-offset: 2px;
  border-radius: 2px;
}

body[data-page="home"] main>section:nth-of-type(4) {
  background: var(--dark);
  padding: var(--xl) var(--sm);
}

body[data-page="home"] main>section:nth-of-type(4)>h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: var(--md);
  border-left: 4px solid var(--lime);
  padding-left: var(--sm);
}

body[data-page="home"] main>section:nth-of-type(4)>ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3px;
}

body[data-page="home"] main>section:nth-of-type(4) li {
  height: 230px;
}

body[data-page="home"] main>section:nth-of-type(4) figure {
  position: relative;
  overflow: hidden;
  height: 100%;
}

body[data-page="home"] main>section:nth-of-type(4) figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .65;
  filter: saturate(.8);
  transition: opacity .4s, transform .5s, filter .4s;
}

body[data-page="home"] main>section:nth-of-type(4) figure:hover img {
  opacity: .9;
  transform: scale(1.05);
  filter: saturate(1.1);
}

body[data-page="home"] main>section:nth-of-type(4) figure::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}

body[data-page="home"] main>section:nth-of-type(4) figure:hover::after {
  transform: scaleX(1);
}

body[data-page="home"] main>section:nth-of-type(4) figcaption {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--head);
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
}

body[data-page="home"] main>section:nth-of-type(4) figcaption::before {
  content: "—";
  display: block;
  font-size: .85rem;
  color: var(--lime);
  margin-bottom: 3px;
}

body[data-page="home"] main>section:nth-of-type(5) {
  background: var(--page);
  padding: var(--xl) var(--sm);
}

body[data-page="home"] main>section:nth-of-type(5)>h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: var(--lg);
  border-left: 4px solid var(--lime);
  padding-left: var(--sm);
}

body[data-page="home"] main>section:nth-of-type(5) ol {
  max-width: 900px;
}

body[data-page="home"] main>section:nth-of-type(5) li {
  display: flex;
  align-items: flex-start;
  gap: var(--md);
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--rule);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}

body[data-page="home"] main>section:nth-of-type(5) li:last-child {
  border-bottom: 0;
}

body[data-page="home"] main>section:nth-of-type(5) li>span {
  font-family: var(--head);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--lime-ink);
  line-height: 1;
  flex-shrink: 0;
  opacity: .4;
}

/* about */

body[data-page="about"] main>section:first-of-type {
  background: var(--dark);
  padding: var(--xxl) var(--sm) var(--lg);
  border-bottom: 4px solid var(--lime);
}

body[data-page="about"] main>section:first-of-type>p {
  font-family: var(--head);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  line-height: .95;
}

body[data-page="about"] main>section:nth-of-type(2) {
  background: var(--white);
  padding: var(--xl) var(--sm);
  display: flex;
  flex-direction: column;
  gap: var(--md);
}

body[data-page="about"] main>section:nth-of-type(2) figure {
  overflow: hidden;
  border-radius: 4px;
}

body[data-page="about"] main>section:nth-of-type(2) figure img {
  width: 100%;
}

body[data-page="about"] main>section:nth-of-type(2) h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: var(--sm);
  border-left: 4px solid var(--lime);
  padding-left: var(--sm);
}

body[data-page="about"] main>section:nth-of-type(2) p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--ink-mid);
  margin-bottom: .75rem;
}

body[data-page="about"] main>section:nth-of-type(3) {
  background: var(--page);
  padding: var(--xl) var(--sm);
}

body[data-page="about"] main>section:nth-of-type(3) h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: var(--lg);
  border-left: 4px solid var(--lime);
  padding-left: var(--sm);
}

body[data-page="about"] main>section:nth-of-type(3) ol {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

body[data-page="about"] main>section:nth-of-type(3) li {
  background: var(--white);
  padding: 1.4rem var(--md);
  display: flex;
  align-items: center;
  gap: var(--md);
  border-left: 4px solid transparent;
  transition: border-color .2s;
}

body[data-page="about"] main>section:nth-of-type(3) li:hover {
  border-color: var(--lime);
}

body[data-page="about"] main>section:nth-of-type(3) li>span {
  font-family: var(--head);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--lime-ink);
  flex-shrink: 0;
  min-width: 2.8rem;
  line-height: 1;
  opacity: .5;
}

body[data-page="about"] main>section:nth-of-type(3) li p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  color: var(--ink-mid);
}

body[data-page="about"] main>section:nth-of-type(4) {
  background: var(--dark);
  padding: var(--xl) var(--sm);
}

body[data-page="about"] main>section:nth-of-type(4) h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: var(--lg);
  border-left: 4px solid var(--lime);
  padding-left: var(--sm);
}

body[data-page="about"] main>section:nth-of-type(4)>ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sm);
}

body[data-page="about"] main>section:nth-of-type(4) figure {
  overflow: hidden;
  border-radius: 4px;
  height: 250px;
  position: relative;
}

body[data-page="about"] main>section:nth-of-type(4) figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .75;
}

body[data-page="about"] main>section:nth-of-type(4) figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--sm);
  background: linear-gradient(to top, rgba(0, 0, 0, .8), transparent);
  color: #fff;
  font-size: .88rem;
  font-weight: 700;
}

/* service */

body[data-page="service"] main>section:first-of-type {
  background: var(--dark);
  padding: var(--xxl) var(--sm) var(--lg);
  border-bottom: 4px solid var(--lime);
}

body[data-page="service"] main>section:first-of-type h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: var(--sm);
}

body[data-page="service"] main>section:first-of-type>p {
  color: rgba(255, 255, 255, .88);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 500px;
}

body[data-page="service"] main>section:nth-of-type(2) {
  background: var(--white);
  padding: var(--xl) var(--sm);
  display: flex;
  flex-direction: column;
  gap: var(--md);
}

body[data-page="service"] main>section:nth-of-type(2) figure {
  overflow: hidden;
  border-radius: 4px;
}

body[data-page="service"] main>section:nth-of-type(2) figure img {
  width: 100%;
}

body[data-page="service"] main>section:nth-of-type(2) h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 900;
  margin-bottom: var(--sm);
  border-left: 4px solid var(--lime);
  padding-left: var(--sm);
}

body[data-page="service"] main>section:nth-of-type(2) p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--ink-mid);
}

body[data-page="service"] main>section:nth-of-type(3) {
  background: var(--page);
  padding: var(--xl) var(--sm);
}

body[data-page="service"] main>section:nth-of-type(3)>h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: var(--lg);
  border-left: 4px solid var(--lime);
  padding-left: var(--sm);
}

body[data-page="service"] main>section:nth-of-type(3)>ul {
  display: flex;
  flex-direction: column;
  gap: 3px;
  max-width: 1200px;
}

body[data-page="service"] main>section:nth-of-type(3) article {
  background: var(--white);
  padding: var(--md);
  border-left: 4px solid transparent;
  transition: border-color .2s;
}

body[data-page="service"] main>section:nth-of-type(3) article:hover {
  border-color: var(--lime);
}

body[data-page="service"] main>section:nth-of-type(3) h3 {
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: .75rem;
}

body[data-page="service"] main>section:nth-of-type(3) article>p {
  font-size: .95rem;
  line-height: 1.7;
  color: var(--ink-mid);
  margin-bottom: var(--sm);
}

body[data-page="service"] main>section:nth-of-type(3) article ul {
  list-style: none;
  padding: 0;
}

body[data-page="service"] main>section:nth-of-type(3) article li {
  font-size: .9rem;
  color: var(--ink-mid);
  padding-left: 1.3rem;
  position: relative;
  margin-bottom: .45rem;
}

body[data-page="service"] main>section:nth-of-type(3) article li::before {
  content: "\2192";
  position: absolute;
  left: 0;
  color: var(--lime-ink);
  font-weight: 800;
}

body[data-page="service"] main>section:last-of-type {
  background: var(--dark);
  padding: var(--xl) var(--sm);
  text-align: center;
}

body[data-page="service"] main>section:last-of-type h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: var(--sm);
}

body[data-page="service"] main>section:last-of-type>p {
  color: rgba(255, 255, 255, .88);
  margin-bottom: var(--md);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

body[data-page="service"] main>section:last-of-type a {
  display: inline-flex;
  align-items: center;
  background: var(--lime);
  padding: .9rem 2rem;
  border-radius: 40px;
  font-weight: 800;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

body[data-page="service"] main>section:last-of-type a:link {
  color: var(--dark);
}

body[data-page="service"] main>section:last-of-type a:visited {
  color: var(--dark);
}

body[data-page="service"] main>section:last-of-type a:hover {
  background: #9ddd1a;
  opacity: 1;
  color: var(--dark);
}

body[data-page="service"] main>section:last-of-type a:active {
  background: var(--amber);
  color: var(--dark);
}

body[data-page="service"] main>section:last-of-type a:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

/* contact */

body[data-page="contact"] main>section {
  padding: var(--xl) var(--sm);
  background: var(--page);
}

body[data-page="contact"] main>section>form {
  background: var(--white);
  padding: var(--md);
  border-radius: 4px;
  border: 1px solid var(--rule);
  max-width: 560px;
}

body[data-page="contact"] h2 {
  font-family: var(--head);
  font-size: 2.2rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: var(--md);
}

body[data-page="contact"] main>section>aside {
  display: none;
}

body[data-page="contact"] main>section>aside img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 404 */

body[data-page="notfound"] main {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--xl) var(--md);
  background: var(--dark);
}

body[data-page="notfound"] main>* {
  max-width: 600px;
  width: 100%;
}

body[data-page="notfound"] main>p:first-of-type {
  font-family: var(--head);
  font-size: 7rem;
  font-weight: 900;
  -webkit-text-stroke: 3px var(--lime);
  color: transparent;
  line-height: 1;
  margin-bottom: var(--sm);
}

body[data-page="notfound"] main h1 {
  font-size: 2.5rem;
  color: #fff;
  text-align: center;
  margin-bottom: var(--sm);
}

body[data-page="notfound"] main>p:last-of-type {
  color: rgba(255, 255, 255, .88);
  margin-bottom: var(--lg);
  text-align: center;
}

body[data-page="notfound"] main nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sm);
  justify-content: center;
}

body[data-page="notfound"] main nav a:first-child {
  display: inline-block;
  padding: .9rem 2rem;
  border-radius: 40px;
  font-weight: 800;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  background: var(--lime);
}

body[data-page="notfound"] main nav a:first-child:link {
  color: var(--dark);
}

body[data-page="notfound"] main nav a:first-child:visited {
  color: var(--dark);
}

body[data-page="notfound"] main nav a:first-child:hover {
  background: #9ddd1a;
  opacity: 1;
  color: var(--dark);
}

body[data-page="notfound"] main nav a:first-child:active {
  background: var(--amber);
  color: var(--dark);
}

body[data-page="notfound"] main nav a:first-child:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

body[data-page="notfound"] main nav a:last-child {
  display: inline-block;
  padding: .9rem 2rem;
  border-radius: 40px;
  font-weight: 800;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  border: 2px solid rgba(255, 255, 255, .35);
}

body[data-page="notfound"] main nav a:last-child:link {
  color: rgba(255, 255, 255, .90);
}

body[data-page="notfound"] main nav a:last-child:visited {
  color: rgba(255, 255, 255, .80);
}

body[data-page="notfound"] main nav a:last-child:hover {
  border-color: var(--lime);
  color: var(--lime);
  opacity: 1;
}

body[data-page="notfound"] main nav a:last-child:active {
  color: var(--amber);
}

body[data-page="notfound"] main nav a:last-child:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

/* accessibility */

body[data-page="accessibility"] main {
  max-width: 860px;
  margin: 0 auto;
  padding: var(--xl) var(--sm);
}

body[data-page="accessibility"] h1 {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: var(--md);
  border-bottom: 4px solid var(--lime);
  padding-bottom: var(--sm);
}

body[data-page="accessibility"] article {
  margin-bottom: var(--lg);
}

body[data-page="accessibility"] h2 {
  font-size: 1.35rem;
  font-weight: 900;
  margin-bottom: var(--sm);
  color: var(--lime-ink);
}

body[data-page="accessibility"] p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--ink-mid);
  margin-bottom: var(--sm);
}

body[data-page="accessibility"] ul {
  list-style: disc;
  padding-left: var(--md);
  margin-bottom: var(--sm);
}

body[data-page="accessibility"] li {
  font-size: .95rem;
  line-height: 1.8;
  color: var(--ink-mid);
  margin-bottom: .38rem;
}

body[data-page="accessibility"] a:link {
  color: var(--lime-ink);
}

body[data-page="accessibility"] a:visited {
  color: var(--lime-ink);
}

body[data-page="accessibility"] a:hover {
  opacity: .75;
}

body[data-page="accessibility"] a:active {
  color: var(--lime-ink);
}

body[data-page="accessibility"] a:focus-visible {
  outline: 3px solid var(--lime-ink);
  outline-offset: 2px;
}

code {
  background: var(--card);
  color: var(--lime-ink);
  padding: .1rem .4rem;
  border-radius: 3px;
  font-size: .88em;
  font-family: monospace;
}

/* responsive */

@media (min-width: 600px) {

  body>header {
    flex-direction: row;
    justify-content: space-between;
    padding: .8rem var(--md);
  }

  body>header nav ul {
    flex-wrap: nowrap;
  }

  /* Hero: 12-col grid */
  body[data-page="home"] main>section:first-of-type>article {
    padding: 192px var(--md) 0;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    align-items: end;
    gap: 40px;
  }

  body[data-page="home"] main>section:first-of-type>article>header {
    grid-column: span 8;
    align-self: end;
  }

  body[data-page="home"] main>section:first-of-type>article>aside {
    grid-column: span 4;
    align-self: end;
    margin-top: 0;
    padding-bottom: 24px;
  }

  body[data-page="home"] main>section:first-of-type>dl {
    grid-template-columns: repeat(4, 1fr);
    margin: 56px var(--md) 0;
    gap: 0;
  }

  body[data-page="home"] main>address {
    padding: .9rem var(--md);
  }

  body[data-page="home"] main>address>ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--md);
  }

  body[data-page="home"] main>section:nth-of-type(4)>ul {
    grid-template-columns: repeat(2, 1fr);
  }

  body[data-page="home"] main>section:nth-of-type(4) li {
    height: 270px;
  }

  body[data-page="about"] main>section:nth-of-type(2) {
    flex-direction: row;
    align-items: center;
    gap: var(--xl);
    padding: var(--xl) var(--md);
  }

  body[data-page="about"] main>section:nth-of-type(2) figure,
  body[data-page="about"] main>section:nth-of-type(2) article {
    flex: 1;
  }

  body[data-page="about"] main>section:nth-of-type(4)>ul {
    grid-template-columns: repeat(2, 1fr);
  }

  body[data-page="service"] main>section:nth-of-type(2) {
    flex-direction: row;
    padding: var(--xl) var(--md);
  }

  body[data-page="service"] main>section:nth-of-type(2) figure,
  body[data-page="service"] main>section:nth-of-type(2) article {
    flex: 1;
  }

  body[data-page="service"] main>section:nth-of-type(3)>ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  body[data-page="contact"] main>section {
    display: flex;
    gap: 0;
  }

  body[data-page="contact"] main>section>form {
    flex: 1;
    padding: var(--xl);
    border-radius: 4px 0 0 4px;
    border-right: 0;
    max-width: none;
  }

  body[data-page="contact"] main>section>aside {
    display: block;
    flex: 1;
  }

  fieldset {
    flex-direction: row;
  }

  footer>section:first-of-type {
    grid-template-columns: 1fr 1fr;
    padding: var(--xl) var(--md);
  }

  footer>section:first-of-type>section:first-of-type {
    grid-column: span 2;
  }

  footer>section:last-of-type {
    flex-direction: row;
    justify-content: space-between;
    padding: var(--sm) var(--md) var(--md);
    text-align: left;
  }
}

@media (min-width: 900px) {

  body>header {
    padding: .8rem var(--xl);
  }

  body[data-page="home"] main>section:first-of-type>article {
    padding: 192px var(--xl) 0;
  }

  body[data-page="home"] main>section:first-of-type h1 {
    font-size: clamp(6rem, 9vw, 11rem);
  }

  body[data-page="home"] main>section:first-of-type>dl {
    grid-template-columns: repeat(4, 1fr);
    margin: 0 var(--xl);
    padding-bottom: 64px;
  }

  body[data-page="home"] main>section:nth-of-type(4) {
    padding: var(--xxl) var(--xl);
  }

  body[data-page="home"] main>section:nth-of-type(4)>ul {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 270px);
  }

  body[data-page="home"] main>section:nth-of-type(4) li {
    height: auto;
  }

  body[data-page="home"] main>section:nth-of-type(4) li:first-child {
    grid-row: span 2;
  }

  body[data-page="home"] main>section:nth-of-type(5) {
    padding: var(--xxl) var(--xl);
  }

  body[data-page="about"] main>section:first-of-type {
    padding: var(--xxl) var(--xl) var(--lg);
  }

  body[data-page="about"] main>section:nth-of-type(2) {
    padding: var(--xxl) var(--xl);
    gap: var(--xxl);
  }

  body[data-page="about"] main>section:nth-of-type(3) {
    padding: var(--xxl) var(--xl);
  }

  body[data-page="about"] main>section:nth-of-type(4) {
    padding: var(--xxl) var(--xl);
  }

  body[data-page="about"] main>section:nth-of-type(4)>ul {
    grid-template-columns: repeat(3, 1fr);
  }

  body[data-page="service"] main>section:first-of-type {
    padding: var(--xxl) var(--xl) var(--lg);
  }

  body[data-page="service"] main>section:nth-of-type(2) {
    padding: var(--xxl) var(--xl);
    gap: var(--xxl);
  }

  body[data-page="service"] main>section:nth-of-type(3) {
    padding: var(--xxl) var(--xl);
  }

  body[data-page="service"] main>section:nth-of-type(3)>ul {
    grid-template-columns: repeat(3, 1fr);
  }

  body[data-page="service"] main>section:last-of-type {
    padding: var(--xxl) var(--xl);
  }

  body[data-page="contact"] main>section {
    padding: var(--xxl) var(--xl);
  }

  footer>section:first-of-type {
    grid-template-columns: 1.4fr 1fr 1fr;
    padding: var(--xxl) var(--xl);
    gap: var(--xxl);
  }

  footer>section:first-of-type>section:first-of-type {
    grid-column: span 1;
  }

  footer>section:last-of-type {
    padding: var(--sm) var(--xl) var(--md);
  }
}

@media (min-width: 1200px) {
  body[data-page="notfound"] main>p:first-of-type {
    font-size: 10rem;
  }

  footer>section:first-of-type>section:first-of-type>h2 {
    font-size: 7rem;
  }
}

/* experts */

body[data-page="home"] main > section:nth-of-type(2) {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr;
  border-bottom: 1px solid var(--rule);
}

body[data-page="home"] main > section:nth-of-type(2) > h2 {
  padding: var(--xl) var(--sm) var(--sm);
  border-left: 4px solid var(--lime);
  margin-left: var(--sm);
  font-family: var(--head);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 1.0;
  color: var(--ink);
}

body[data-page="home"] main > section:nth-of-type(2) > p {
  padding: var(--sm) var(--sm) var(--xl);
  font-size: 1rem;
  line-height: 1.85;
  color: var(--ink-mid);
}

body[data-page="home"] main > section:nth-of-type(2) > figure {
  overflow: hidden;
  margin: 0;
  height: 320px;
}

body[data-page="home"] main > section:nth-of-type(2) > figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s;
}

body[data-page="home"] main > section:nth-of-type(2) > figure:hover img {
  transform: scale(1.03);
}

/* what we do */

body[data-page="home"] main > section:nth-of-type(3) {
  background: var(--page);
  display: flex;
  flex-direction: column;
  margin-bottom: var(--xl);
}

/* Left: full-bleed image */
body[data-page="home"] main > section:nth-of-type(3) > figure {
  overflow: hidden;
  margin: 0;
  height: 280px;
  flex-shrink: 0;
}

body[data-page="home"] main > section:nth-of-type(3) > figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s;
}

body[data-page="home"] main > section:nth-of-type(3) > figure:hover img {
  transform: scale(1.03);
}

/* Right: text column */
body[data-page="home"] main > section:nth-of-type(3) > article {
  padding: var(--xl) var(--sm);
  display: flex;
  flex-direction: column;
  gap: var(--md);
}

body[data-page="home"] main > section:nth-of-type(3) > article > h2 {
  font-family: var(--head);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 400;
  text-transform: none;
  letter-spacing: -.02em;
  color: var(--ink);
  line-height: 1.1;
}

body[data-page="home"] main > section:nth-of-type(3) > article > p:first-of-type {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--ink-mid);
}

/* Lime callout banner */
body[data-page="home"] main > section:nth-of-type(3) > article > p[role="note"] {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  background: var(--lime);
  color: var(--ink);
  padding: 1rem 1.5rem;
  border-left: 4px solid var(--ink);
  font-size: .85rem;
  font-weight: 700;
  font-family: var(--body);
  text-transform: uppercase;
  letter-spacing: .06em;
  width: 100%;
  border-radius: 4px;
}

/* Skip link */
body > a:first-child {
  position: absolute;
  top: -100%;
  left: var(--sm);
  background: var(--lime);
  color: var(--dark);
  padding: .75rem 1.5rem;
  font-weight: 800;
  z-index: 9999;
  border-radius: 0 0 6px 6px;
  transition: top .2s;
  text-decoration: none;
}

body > a:first-child:focus {
  top: 0;
}

body > a:first-child:link,
body > a:first-child:visited {
  color: var(--dark);
}

body > a:first-child:focus-visible {
  outline: 3px solid var(--dark);
  outline-offset: 2px;
}

/* responsive — sections */

@media (min-width: 600px) {

  body[data-page="home"] main > section:nth-of-type(2) {
    grid-template-columns: 1fr 1fr 1fr;
    min-height: 360px;
  }

  body[data-page="home"] main > section:nth-of-type(2) > h2 {
    padding: var(--xl) var(--md);
    margin-left: var(--md);
    display: flex;
    align-items: center;
  }

  body[data-page="home"] main > section:nth-of-type(2) > p {
    padding: var(--xl) var(--md);
    display: flex;
    align-items: center;
    max-width: none;
  }

  body[data-page="home"] main > section:nth-of-type(2) > figure {
    height: auto;
    min-height: 320px;
  }

  /* What We Do */
  body[data-page="home"] main > section:nth-of-type(3) {
    flex-direction: row;
    min-height: 360px;
  }

  body[data-page="home"] main > section:nth-of-type(3) > figure {
    flex: 0 0 50%;
    height: auto;
    align-self: stretch;
  }

  body[data-page="home"] main > section:nth-of-type(3) > article {
    flex: 1;
    padding: var(--xl) var(--md);
    justify-content: center;
  }
}

@media (min-width: 900px) {

  body[data-page="home"] main > section:nth-of-type(2) > h2 {
    padding: var(--xxl) var(--xxl) var(--xxl) var(--xl);
    margin-left: var(--xl);
  }

  body[data-page="home"] main > section:nth-of-type(2) > p {
    padding: var(--xxl) var(--xl);
  }

  body[data-page="home"] main > section:nth-of-type(3) {
    min-height: 560px;
  }

  body[data-page="home"] main > section:nth-of-type(3) > article {
    padding: var(--xxl);
  }

  body[data-page="home"] main > section:nth-of-type(3) > article > h2 {
    font-size: clamp(2.5rem, 4vw, 4rem);
  }
}