:root {
  --black: #070707;
  --ink: #111111;
  --charcoal: #1b1812;
  --gold: #c89b3c;
  --gold-soft: #f4d58b;
  --white: #ffffff;
  --paper: #f8f5ed;
  --stone: #e5dccb;
  --muted: #d8d1c2;
  --text: #201d18;
  --subtle: #625846;
  --line: rgba(255, 255, 255, 0.16);
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding-left: 20px;
}

li + li {
  margin-top: 8px;
}

[hidden] {
  display: none !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: rgba(7, 7, 7, 0.94);
  border-bottom: 1px solid rgba(200, 155, 60, 0.35);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  border-radius: 6px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 1.7vw, 24px);
  color: var(--muted);
  font-size: 0.92rem;
  white-space: nowrap;
}

.nav a:hover,
.text-link:hover {
  color: var(--gold-soft);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--gold);
  border-radius: 6px;
  font-weight: 800;
}

.nav-cta,
.button.primary {
  color: var(--black);
  background: var(--gold);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
}

.button.secondary.dark {
  color: var(--ink);
  background: transparent;
}

.button.big {
  min-height: 56px;
  padding-inline: 26px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.96) 0%, rgba(7, 7, 7, 0.82) 43%, rgba(7, 7, 7, 0.28) 100%),
    url("assets/designalign-hero-banner.webp") center / cover no-repeat;
  transform: scale(1.02);
}

@supports not (background-image: url("assets/designalign-hero-banner.webp")) {
  .hero-media {
    background:
      linear-gradient(90deg, rgba(7, 7, 7, 0.96) 0%, rgba(7, 7, 7, 0.82) 43%, rgba(7, 7, 7, 0.28) 100%),
      url("assets/designalign-hero-banner.png") center / cover no-repeat;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(820px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 98px);
  padding: clamp(84px, 11vw, 146px) 0 180px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
summary {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(3rem, 7.5vw, 6.7rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
  letter-spacing: 0;
}

p {
  line-height: 1.7;
}

.hero-copy {
  max-width: 640px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-panel {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 28px;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  width: min(820px, calc(100% - 36px));
  background: rgba(17, 17, 17, 0.88);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-panel div {
  padding: 22px;
  border-right: 1px solid var(--line);
}

.hero-panel div:last-child {
  border-right: 0;
}

.hero-panel strong,
.hero-panel span {
  display: block;
}

.hero-panel strong {
  margin-bottom: 8px;
  color: var(--gold-soft);
}

.hero-panel span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.search-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(280px, 1fr);
  gap: 28px;
  align-items: end;
  padding: clamp(38px, 6vw, 62px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--ink);
  border-top: 1px solid rgba(244, 213, 139, 0.28);
}

.search-band h2 {
  max-width: 720px;
  font-size: clamp(1.75rem, 3.4vw, 3rem);
}

.search-box {
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.search-box span {
  font-weight: 800;
}

.search-box input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(244, 213, 139, 0.35);
  border-radius: 6px;
  font: inherit;
}

.section {
  padding: clamp(76px, 10vw, 128px) clamp(18px, 5vw, 72px);
}

.section-heading,
.section-copy {
  width: min(1180px, 100%);
  margin: 0 auto 34px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.65fr);
  gap: 34px;
  align-items: end;
}

.section-heading .eyebrow,
.section-heading h2 {
  grid-column: 1;
}

.section-heading p:not(.eyebrow) {
  grid-column: 2;
  color: var(--subtle);
}

.section-heading.compact {
  display: block;
}

.section-heading.compact p:not(.eyebrow) {
  max-width: 760px;
}

.split,
.about,
.material-band,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: start;
}

.section-copy {
  margin-bottom: 0;
}

.section-copy p,
.section-heading p,
.pricing-grid p,
.service-grid p,
.material-list p,
.faq-list p,
.contact-details p {
  color: var(--subtle);
}

address {
  color: var(--subtle);
  font-style: normal;
  line-height: 1.7;
}

.values-grid,
.pricing-grid,
.service-grid {
  display: grid;
  gap: 1px;
  background: var(--stone);
  border: 1px solid var(--stone);
}

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

.values-grid article,
.pricing-grid div,
.service-grid article {
  min-height: 190px;
  padding: 26px;
  background: var(--white);
}

.dark {
  color: var(--white);
  background: var(--black);
}

.dark .section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(1180px, 100%);
  margin: 0 auto;
  background: rgba(244, 213, 139, 0.22);
  border: 1px solid rgba(244, 213, 139, 0.22);
}

.portfolio-grid article {
  min-height: 290px;
  padding: 28px;
  background: linear-gradient(135deg, rgba(200, 155, 60, 0.22), rgba(255, 255, 255, 0.05));
}

.portfolio-grid span {
  display: inline-block;
  margin-bottom: 38px;
  color: var(--gold-soft);
  font-weight: 900;
}

.portfolio-grid ul {
  color: var(--muted);
}

.portfolio-turnstyle,
.project-turnstyle {
  display: flex;
  gap: 14px;
  width: min(1180px, 100%);
  margin: 28px auto 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding-bottom: 10px;
  scroll-snap-type: inline mandatory;
  scrollbar-color: var(--gold) rgba(255, 255, 255, 0.14);
}

.swipe-cue {
  width: min(1180px, 100%);
  margin: 24px auto 0;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.dark .swipe-cue {
  color: var(--gold-soft);
}

.portfolio-turnstyle figure,
.project-turnstyle figure {
  position: relative;
  flex: 0 0 clamp(220px, 24vw, 300px);
  margin: 0;
  overflow: hidden;
  background: var(--black);
  border: 1px solid rgba(244, 213, 139, 0.22);
  border-radius: 6px;
  cursor: zoom-in;
  scroll-snap-align: start;
}

.portfolio-turnstyle figure:focus-visible,
.project-turnstyle figure:focus-visible {
  outline: 3px solid var(--gold-soft);
  outline-offset: 3px;
}

.portfolio-turnstyle img,
.project-turnstyle img {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.portfolio-turnstyle figcaption,
.project-turnstyle figcaption {
  min-height: 70px;
  padding: 18px;
  color: var(--white);
  background: rgba(7, 7, 7, 0.92);
  font-weight: 900;
}

.project-turnstyle {
  margin-bottom: 28px;
}

.project-turnstyle figure {
  flex-basis: clamp(240px, 28vw, 340px);
  background: var(--white);
  border-color: var(--stone);
}

.project-turnstyle img {
  height: 180px;
}

.project-turnstyle figcaption {
  display: grid;
  gap: 6px;
  color: var(--ink);
  background: var(--white);
}

.project-turnstyle strong,
.project-turnstyle span {
  display: block;
}

.project-turnstyle strong {
  color: var(--ink);
}

.project-turnstyle span {
  color: var(--subtle);
  font-size: 0.92rem;
  line-height: 1.45;
}

.trust {
  background: var(--paper);
}

.trust-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(1180px, 100%);
  margin: 0 auto;
  background: var(--stone);
  border: 1px solid var(--stone);
}

.trust-points div {
  min-height: 150px;
  padding: 24px;
  background: var(--white);
}

.trust-points strong,
.trust-points span {
  display: block;
}

.trust-points strong {
  margin-bottom: 8px;
  color: var(--ink);
}

.trust-points span {
  color: var(--subtle);
  line-height: 1.5;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1180px, 100%);
  margin: 0 auto;
}

.pricing-grid strong {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 30px;
  color: var(--black);
  background: var(--gold);
  border-radius: 50%;
}

.services {
  background: var(--white);
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1180px, 100%);
  margin: 0 auto;
}

.service-grid article {
  background: var(--paper);
}

.material-band {
  color: var(--white);
  background: var(--charcoal);
}

.material-band .section-copy p {
  color: var(--muted);
}

.section-note {
  display: block;
  margin-top: 18px;
  padding: 0;
  color: var(--gold-soft) !important;
  background: transparent;
  border: 0;
  font-weight: 900;
}

.material-list {
  display: grid;
  gap: 14px;
}

.material-list div {
  padding: 22px;
  border: 1px solid rgba(244, 213, 139, 0.24);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
}

.material-list span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-soft);
  font-weight: 900;
}

.material-list p {
  color: var(--muted);
  margin: 0;
}

.faq-list {
  width: min(900px, 100%);
  margin: 0 auto;
}

details {
  border-bottom: 1px solid #d7cdb9;
}

summary {
  cursor: pointer;
  padding: 22px 0;
  font-weight: 900;
}

details p {
  margin: 0 0 22px;
}

.quote {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(320px, 1fr);
  align-items: start;
  gap: 28px;
  color: var(--white);
  background: var(--charcoal);
}

.quote .eyebrow {
  color: var(--gold);
}

.quote .button.primary {
  color: var(--black);
  background: var(--gold-soft);
  border-color: var(--gold-soft);
}

.quote p:not(.eyebrow) {
  max-width: 740px;
  color: var(--muted);
}

.site-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(22px, 4vw, 34px);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(244, 213, 139, 0.24);
  border-radius: 6px;
}

.site-form label,
.form-heading {
  display: grid;
  gap: 8px;
}

.choice-group {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.choice-group legend {
  margin-bottom: 8px;
  color: var(--gold-soft);
  font-size: 0.86rem;
  font-weight: 900;
}

.choice-group legend small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.choice-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 28px;
}

.choice-group input[type="checkbox"] {
  width: 18px;
  min-height: 18px;
  margin: 0;
  accent-color: var(--gold-soft);
}

.publish-consent {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 10px;
}

.publish-consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
  accent-color: var(--gold-soft);
}

.site-form span {
  color: var(--gold-soft);
  font-size: 0.86rem;
  font-weight: 900;
}

.site-form input,
.site-form select,
.site-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--white);
  background: rgba(7, 7, 7, 0.36);
  border: 1px solid rgba(244, 213, 139, 0.26);
  border-radius: 6px;
  font: inherit;
}

.site-form textarea {
  min-height: 128px;
  padding-top: 12px;
  resize: vertical;
}

.site-form select {
  color: var(--white);
}

.site-form option {
  color: var(--ink);
}

.form-full,
.form-heading,
.choice-group,
.site-form .button {
  grid-column: 1 / -1;
}

.botcheck {
  display: none;
}

.form-heading h3 {
  color: var(--white);
}

.form-status {
  grid-column: 1 / -1;
  margin: 0 0 18px;
  padding: 14px 16px;
  border-radius: 6px;
  font-weight: 800;
}

.form-status.success,
.quote p.form-status.success,
.contact p.form-status.success {
  color: #0f2f1a;
  background: #d9f6e2;
  border: 1px solid #58a96f;
}

.form-status.error,
.quote p.form-status.error,
.contact p.form-status.error {
  color: #4c170f;
  background: #ffe2da;
  border: 1px solid #d66f58;
}

.contact-form {
  color: var(--ink);
  background: var(--white);
  border-color: var(--stone);
}

.contact-form .form-heading h3 {
  color: var(--ink);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--stone);
}

.contact-form span {
  color: var(--subtle);
}

.google-profile {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(280px, 0.55fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  color: var(--ink);
  background: var(--paper);
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
}

.google-profile-copy {
  max-width: 820px;
}

.google-profile-copy p:not(.eyebrow) {
  color: var(--subtle);
}

.google-profile-actions {
  display: grid;
  gap: 14px;
}

.testimonials {
  background: var(--white);
}

.testimonial-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 0.75fr);
  gap: clamp(24px, 5vw, 58px);
  width: min(1180px, 100%);
  margin: 0 auto;
  align-items: start;
}

.testimonial-panel {
  min-height: 100%;
  padding: clamp(22px, 4vw, 34px);
  background: var(--paper);
  border: 1px solid var(--stone);
  border-radius: 6px;
}

.testimonial-list {
  display: grid;
  gap: 14px;
}

.testimonial-empty {
  margin: 0;
  color: var(--subtle);
}

.testimonial-card {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: 6px;
}

.testimonial-rating {
  margin: 0 0 10px;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0;
}

.testimonial-card blockquote {
  margin: 0;
  color: var(--text);
  line-height: 1.65;
}

.testimonial-meta {
  margin: 14px 0 0;
  color: var(--subtle);
  font-size: 0.92rem;
  font-weight: 900;
}

.testimonial-form {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--stone);
}

.testimonial-form .form-heading h3 {
  color: var(--ink);
}

.testimonial-form input,
.testimonial-form select,
.testimonial-form textarea {
  color: var(--ink);
  background: var(--white);
  border-color: var(--stone);
}

.testimonial-form span {
  color: var(--subtle);
}

.text-link {
  display: inline-flex;
  width: min(1180px, 100%);
  margin: 24px auto 0;
  color: var(--gold);
  font-weight: 900;
}

.contact {
  background: var(--paper);
}

.contact-details {
  position: sticky;
  top: 108px;
}

.contact-details a:not(.button) {
  color: var(--gold);
  font-weight: 900;
}

.embed-stack {
  display: grid;
  gap: 18px;
}

iframe {
  width: 100%;
  min-height: 360px;
  border: 1px solid var(--stone);
  border-radius: 6px;
  background: var(--white);
}

.embed-stack iframe:last-child {
  min-height: 720px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(18px, 5vw, 72px);
  color: var(--muted);
  background: var(--black);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--gold-soft);
  font-weight: 900;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: clamp(18px, 4vw, 42px);
  background: rgba(7, 7, 7, 0.92);
}

.lightbox[aria-hidden="false"] {
  display: grid;
}

.lightbox figure {
  display: grid;
  gap: 12px;
  width: min(1000px, 100%);
  max-height: 88vh;
  margin: 0;
}

.lightbox img {
  display: block;
  width: 100%;
  max-height: min(78vh, 760px);
  object-fit: contain;
  background: var(--black);
  border: 1px solid rgba(244, 213, 139, 0.34);
  border-radius: 6px;
}

.lightbox figcaption {
  color: var(--gold-soft);
  font-weight: 900;
  text-align: center;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 2;
  min-height: 44px;
  padding: 0 16px;
  color: var(--black);
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 6px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  z-index: 2;
  min-height: 52px;
  padding: 0 16px;
  color: var(--white);
  background: rgba(17, 17, 17, 0.82);
  border: 1px solid rgba(244, 213, 139, 0.55);
  border-radius: 6px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 18px;
}

.lightbox-next {
  right: 18px;
}

.lightbox-open {
  overflow: hidden;
}

.admin-page {
  min-height: 100vh;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.94), rgba(7, 7, 7, 0.76)),
    url("assets/designalign-hero-banner.png") center / cover no-repeat;
}

.admin-shell {
  display: grid;
  align-content: center;
  gap: 34px;
  width: min(860px, calc(100% - 36px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 48px 0;
}

.admin-card {
  padding: clamp(30px, 6vw, 58px);
  background: rgba(17, 17, 17, 0.88);
  border: 1px solid rgba(244, 213, 139, 0.26);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.admin-card h1 {
  font-size: clamp(2.8rem, 8vw, 5.5rem);
}

.admin-card p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .portfolio-grid,
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .hero-panel,
  .search-band,
  .section-heading,
  .split,
  .material-band,
  .contact,
  .google-profile,
  .testimonial-layout,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    margin: -96px auto 28px;
  }

  .hero-panel div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-panel div:last-child {
    border-bottom: 0;
  }

  .section-heading .eyebrow,
  .section-heading h2,
  .section-heading p:not(.eyebrow) {
    grid-column: auto;
  }

  .contact-details {
    position: static;
  }

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

  .quote .button {
    margin-top: 18px;
  }
}

@media (max-width: 620px) {
  .site-header {
    position: static;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
  }

  .brand {
    min-width: 0;
  }

  .nav {
    justify-content: flex-start;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
  }

  .nav-cta,
  .button,
  .contact-actions {
    width: 100%;
  }

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

  .hero {
    min-height: auto;
    width: 100vw;
    max-width: 100%;
  }

  .hero-content {
    width: 100vw;
    max-width: 100%;
    margin: 0 auto;
    padding: 72px 16px 128px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(1.9rem, 8vw, 2.25rem);
    line-height: 1;
  }

  .hero-copy {
    max-width: 100%;
    font-size: 1rem;
  }

  .portfolio-grid,
  .values-grid,
  .trust-points,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .site-footer {
    display: block;
  }

  .site-footer a {
    display: inline-flex;
    margin-top: 12px;
  }

  .lightbox {
    padding: 18px;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
  }

  .lightbox-nav {
    top: auto;
    bottom: 16px;
    min-height: 46px;
    transform: none;
  }

  .lightbox-prev {
    left: 18px;
  }

  .lightbox-next {
    right: 18px;
  }

  .lightbox figure {
    padding-bottom: 62px;
  }
}
