/* NOA Studio — design tokens and layout. Fixed per spec; content lives in /data/site.json */

:root {
  --bg: #F3ECE3;
  --surface: #FAF6F0;
  --ink: #2A1F1A;
  --ink-2: #7D6C61;
  --accent: #B4563B;
  --accent-h: #9A4830;
  --line: #E1D5C8;
  --on-dark: #F3ECE3;
  --on-dark-2: #B9A89B;
  --ok: #5E7A55;
  --err: #A3402E;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-text: "Manrope", Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --container: 1200px;
  --pad-x: 20px;
  --section-y: 72px;
  --head-gap: 32px;
  --btn-h: 52px;
}

@media (min-width: 1024px) {
  :root {
    --pad-x: 40px;
    --section-y: 120px;
    --head-gap: 48px;
    --btn-h: 56px;
  }
}

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

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-text);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 72px; /* room for the mobile sticky bar */
}

@media (min-width: 1024px) {
  body {
    font-size: 17px;
    padding-bottom: 0;
  }
}

h1,
h2,
p,
ul,
dl,
dd,
figure,
blockquote,
address {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

address {
  font-style: normal;
}

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

a {
  color: inherit;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

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

section {
  scroll-margin-top: 72px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.section {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}

/* ---------- typography ---------- */
.h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 42px;
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.h1-accent {
  font-style: italic;
  color: var(--accent);
}

.h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 34px;
  line-height: 1.08;
  color: var(--ink);
}

.h2-on-dark {
  color: var(--on-dark);
}

.eyebrow {
  font-family: var(--font-text);
  font-weight: 600;
  font-size: 12px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-2);
}

.eyebrow-on-dark {
  color: var(--on-dark-2);
}

.section-head .h2 {
  margin-top: 12px;
}

.section-head {
  margin-bottom: var(--head-gap);
}

.body {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
}

.body-2 {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
}

@media (min-width: 1024px) {
  .h1 {
    font-size: 68px;
  }
  .h2 {
    font-size: 52px;
  }
  .body {
    font-size: 17px;
  }
  .body-2 {
    font-size: 15px;
  }
}

.section-note {
  max-width: 60ch;
  margin-top: 16px;
}

/* ---------- buttons & links ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: var(--btn-h);
  padding: 0 28px;
  border-radius: 2px;
  font-family: var(--font-text);
  font-weight: 600;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 120ms ease, color 120ms ease;
}

.btn-primary {
  background: var(--accent);
  color: var(--on-dark);
}

.btn-primary:hover,
.btn-primary:active {
  background: var(--accent-h);
}

.btn-primary:disabled {
  cursor: default;
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.btn-secondary:hover,
.btn-secondary:active {
  background: var(--ink);
  color: var(--on-dark);
}

.btn-block {
  width: 100%;
}

.mark {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
}

.text-link {
  font-family: var(--font-text);
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 64px;
  background: var(--bg);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  text-decoration: none;
  color: var(--ink);
}

.wordmark-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.02em;
}

.wordmark-suffix {
  font-family: var(--font-text);
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-2);
}

.site-nav {
  display: none;
}

.nav-list {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}

.nav-link.is-active {
  border-bottom-color: var(--accent);
}

.btn-header {
  display: none;
  height: 44px;
}

.header-text-btn {
  display: inline-flex;
  align-items: center;
  height: 44px;
  padding: 0 4px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--accent);
}

@media (min-width: 1024px) {
  .header-inner {
    justify-content: flex-start;
  }
  .site-nav {
    display: block;
    margin-left: auto;
    margin-right: 40px;
  }
  .btn-header {
    display: inline-flex;
  }
  .header-text-btn {
    display: none;
  }
}

/* ---------- hero ---------- */
.hero {
  padding-top: 32px;
  padding-bottom: 56px;
}

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

.hero-text,
.hero-media,
.hero-actions {
  grid-column: 1 / -1;
}

.hero-text {
  opacity: 0;
  transform: translateY(12px);
  animation: hero-text-in 600ms var(--ease) 100ms forwards;
}

.hero-text .h1 {
  margin-top: 16px;
}

.hero-p {
  max-width: 44ch;
  margin-top: 24px;
}

.hero-media {
  margin-top: 40px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform-origin: center;
  animation: hero-img-in 1200ms var(--ease) forwards;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 32px;
}

.hero-actions .btn {
  width: 100%;
}

.hero-actions .text-link {
  margin-top: 16px;
}

@keyframes hero-img-in {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1);
  }
}

@keyframes hero-text-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 1024px) {
  .hero {
    padding-top: 48px;
    padding-bottom: 96px;
  }
  .hero-grid {
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 24px;
    align-items: center;
    align-content: center;
  }
  .hero-text {
    grid-column: 1 / 7;
    grid-row: 1;
    align-self: end;
  }
  .hero-actions {
    grid-column: 1 / 7;
    grid-row: 2;
    flex-direction: row;
    align-items: center;
    align-self: start;
    gap: 24px;
    margin-top: 0;
    padding-top: 24px;
  }
  .hero-actions .btn {
    width: auto;
  }
  .hero-actions .text-link {
    margin-top: 0;
  }
  .hero-media {
    grid-column: 8 / 13;
    grid-row: 1 / 3;
    margin-top: 48px; /* deliberate offset below the text block */
    aspect-ratio: auto;
    align-self: start;
    height: clamp(520px, calc(100vh - 160px), 680px);
  }
}

/* ---------- info strip ---------- */
.info {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-item {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
}

@media (min-width: 1024px) {
  .info-list {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }
  .info-item + .info-item::before {
    content: "·";
    color: var(--ink-2);
    margin: 0 24px;
  }
}

/* ---------- prices ---------- */
.price-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.price-rows {
  margin-top: 16px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: background-color 120ms ease;
}

.price-row:first-child {
  border-top: 1px solid var(--line);
}

.price-name {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.price-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
}

.price-duration {
  font-weight: 400;
  font-size: 13px;
  line-height: 1.4;
  color: var(--ink-2);
}

.price-value {
  flex: 0 0 auto;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  font-variant-numeric: tabular-nums;
  text-align: right;
  white-space: nowrap;
}

.price-footnote {
  margin-top: 32px;
}

@media (min-width: 1024px) {
  .price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    align-items: start;
  }
  .price-row:hover {
    background: var(--surface);
  }
}

/* ---------- gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.gallery-btn {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
}

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

.gallery-more {
  margin-top: 24px;
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .gallery-btn:hover img {
    transform: scale(1.03);
  }
}

/* image grade unification */
.hero-media img,
.gallery-btn img,
.master-media img,
.lb-img {
  filter: saturate(0.94) sepia(0.05);
}

/* ---------- master ---------- */
.master {
  background: var(--ink);
  color: var(--on-dark);
}

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

.master-media,
.master-text {
  grid-column: 1 / -1;
}

.master-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
}

.master-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.master-text {
  margin-top: 24px;
}

.master-text .section-head {
  margin-bottom: 32px;
}

.master-role {
  margin-top: 12px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.3;
  color: var(--on-dark-2);
}

.master-p {
  color: var(--on-dark);
}

.master-p + .master-p {
  margin-top: 16px;
}

.master-facts {
  margin-top: 24px;
}

.master-facts li {
  padding: 12px 0;
  border-top: 1px solid rgba(243, 236, 227, 0.16);
  font-size: 15px;
  line-height: 1.5;
  color: var(--on-dark);
}

@media (min-width: 1024px) {
  .master-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    align-items: center;
  }
  .master-media {
    grid-column: 1 / 6;
  }
  .master-text {
    grid-column: 7 / 13;
    margin-top: 0;
  }
}

/* ---------- reviews ---------- */
.reviews-grid {
  display: flex;
  flex-direction: column;
}

.review {
  padding: 32px 0;
  border-top: 1px solid var(--line);
}

.review-quote p {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.35;
  color: var(--ink);
}

.review-meta {
  margin-top: 20px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
}

.review-source {
  color: var(--ink-2);
}

@media (min-width: 1024px) {
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }
  .review {
    padding: 0;
    border-top: 0;
  }
  .review + .review {
    border-left: 1px solid var(--line);
    padding-left: 32px;
  }
  .review:not(:last-child) {
    padding-right: 32px;
  }
  .review-quote p {
    font-size: 26px;
  }
}

/* ---------- booking ---------- */
.zapis-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.zapis-intro,
.form-panel {
  grid-column: 1 / -1;
}

.direct-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.form-panel {
  margin-top: 40px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 24px;
}

.field + .field {
  margin-top: 20px;
}

.label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.4;
  color: var(--ink-2);
}

.input {
  display: block;
  width: 100%;
  height: 48px;
  padding: 0 14px;
  background: var(--bg);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 2px;
  font-family: var(--font-text);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  transition: border-color 120ms ease;
  -webkit-appearance: none;
  appearance: none;
}

.input::placeholder {
  color: var(--ink-2);
  opacity: 0.7;
}

.input:focus {
  outline: none;
  border-color: var(--ink);
}

.input.is-invalid {
  border-color: var(--err);
}

.input.is-highlighted {
  border-color: var(--accent);
}

.select {
  padding-right: 40px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%232A1F1A' stroke-width='1.2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.textarea {
  height: auto;
  min-height: 96px;
  padding: 12px 14px;
  resize: vertical;
}

.field-error,
.form-error {
  display: none;
  margin-top: 6px;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.5;
  color: var(--err);
}

.field-error.is-visible,
.form-error.is-visible {
  display: block;
}

.form-error {
  margin-top: 12px;
}

.form-error a {
  color: var(--err);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.lead-form .btn-block {
  margin-top: 28px;
}

.form-disclaimer {
  margin-top: 12px;
}

.form-success h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.15;
  color: var(--ink);
}

.form-success p {
  margin-top: 16px;
  color: var(--ok);
}

.form-success .text-link {
  display: inline-block;
  margin-top: 20px;
}

@media (min-width: 1024px) {
  .zapis-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    align-items: start;
  }
  .zapis-intro {
    grid-column: 1 / 6;
  }
  .form-panel {
    grid-column: 7 / 13;
    margin-top: 0;
    padding: 40px;
  }
  .direct-buttons .btn {
    max-width: 320px;
  }
}

/* ---------- contacts ---------- */
.kontakty-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.kontakty-text,
.map-box {
  grid-column: 1 / -1;
}

.address-block > * + * {
  margin-top: 12px;
}

.address-line {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
}

.hours-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  font-size: 15px;
  line-height: 1.5;
}

.hours-row + .hours-row {
  margin-top: 8px;
}

.hours-row dt {
  color: var(--ink-2);
}

.hours-row dd {
  color: var(--ink);
}

.contact-links {
  margin-top: 24px;
}

.address-block .contact-links {
  margin-top: 24px;
}

.contact-links li + li {
  margin-top: 12px;
}

.map-box {
  position: relative;
  margin-top: 40px;
  aspect-ratio: 4 / 3;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.map-box iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (min-width: 1024px) {
  .kontakty-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    align-items: start;
  }
  .kontakty-text {
    grid-column: 1 / 6;
  }
  .map-box {
    grid-column: 6 / 13;
    margin-top: 0;
    aspect-ratio: 16 / 10;
  }
}

/* ---------- footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 32px 0 40px;
}

.footer-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-info {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-2);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-weight: 500;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink);
  text-decoration: none;
}

.footer-row-2 {
  margin-top: 16px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--ink-2);
  opacity: 0.7;
}

@media (min-width: 1024px) {
  .footer-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* ---------- mobile sticky bar ---------- */
.sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 8px;
  height: calc(64px + env(safe-area-inset-bottom));
  padding: 8px 16px calc(8px + env(safe-area-inset-bottom));
  background: var(--bg);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(42, 31, 26, 0.1);
  transform: translateY(100%);
  transition: transform 240ms var(--ease);
}

.sticky-bar.is-visible {
  transform: translateY(0);
}

.sticky-tg {
  flex: 1;
  height: 48px;
}

.sticky-wa {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  padding: 0;
}

@media (min-width: 1024px) {
  .sticky-bar {
    display: none;
  }
}

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(42, 31, 26, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 200ms ease;
}

.lightbox[hidden] {
  display: none;
}

.lightbox.is-open {
  opacity: 1;
}

.lb-figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 92vw;
}

.lb-img {
  display: block;
  max-width: 92vw;
  max-height: 86vh;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0;
  transition: opacity 180ms ease;
}

.lb-img.is-shown {
  opacity: 1;
}

.lb-caption {
  margin-top: 12px;
  max-width: 92vw;
  font-family: var(--font-text);
  font-weight: 400;
  font-size: 13px;
  line-height: 1.5;
  color: var(--on-dark-2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lb-counter {
  position: absolute;
  top: 16px;
  left: 20px;
  font-weight: 500;
  font-size: 13px;
  line-height: 1;
  color: var(--on-dark-2);
  font-variant-numeric: tabular-nums;
}

.lb-close {
  position: absolute;
  top: 4px;
  right: 8px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 40px;
  line-height: 1;
  color: var(--on-dark);
}

.lb-arrow {
  display: none;
  position: absolute;
  top: 50%;
  width: 64px;
  height: 64px;
  transform: translateY(-50%);
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 40px;
  line-height: 1;
  color: var(--on-dark);
}

.lb-prev {
  left: 12px;
}

.lb-next {
  right: 12px;
}

.lb-close:focus-visible,
.lb-arrow:focus-visible {
  outline-color: var(--on-dark);
}

@media (min-width: 1024px) {
  .lb-arrow {
    display: flex;
  }
}

body.is-locked {
  overflow: hidden;
}

/* ---------- reveal on scroll ---------- */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 500ms var(--ease), transform 500ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.js [data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .hero-text,
  .hero-media img {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .js [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .gallery-btn img,
  .sticky-bar,
  .lightbox,
  .lb-img {
    transition: none;
  }
}

/* ---------- tap targets (>= 44px hit area, visually unchanged) ---------- */
.text-link,
.footer-links a,
.wordmark {
  display: inline-block;
  padding-top: 12px;
  padding-bottom: 12px;
  margin-top: -12px;
  margin-bottom: -12px;
}

.wordmark {
  display: inline-flex;
}

/* ---------- skip link (keyboard users) ---------- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 100;
  padding: 12px 16px;
  background: var(--ink);
  color: var(--on-dark);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 2px;
}
.skip-link:focus {
  top: 12px;
}
