:root {
  --ink: #171713;
  --muted: #5f655c;
  --paper: #f7f7f2;
  --white: #ffffff;
  --line: rgba(23, 23, 19, 0.12);
  --forest: #2f5b3a;
  --teal: #27736f;
  --ember: #ef5f1b;
  --gold: #d9bd57;
  --coal: #101411;
  --shadow: 0 22px 50px rgba(16, 20, 17, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.lightbox-open,
body.gdpr-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

svg {
  display: block;
  width: 1.15rem;
  height: 1.15rem;
  fill: currentColor;
  flex: 0 0 auto;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  background: var(--white);
  color: var(--ink);
  padding: 0.7rem 1rem;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.skip-link:focus {
  top: 1rem;
}

.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;
}

.section-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 0.85rem 0;
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(247, 247, 242, 0.94);
  box-shadow: 0 16px 40px rgba(16, 20, 17, 0.12);
  backdrop-filter: blur(16px);
  padding: 0.55rem 0;
}

.nav-shell {
  width: min(1220px, calc(100% - 28px));
  min-height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 235px;
  height: 58px;
  padding: 0.22rem 0.45rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.18));
}

.site-header.is-scrolled .brand img,
.site-header.is-open .brand img {
  filter: none;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: var(--white);
  font-weight: 700;
}

.site-header.is-scrolled .site-menu,
.site-header.is-open .site-menu {
  color: var(--ink);
}

.site-menu > a:not(.nav-call) {
  position: relative;
  padding: 0.5rem 0;
}

.site-menu > a:not(.nav-call)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.25rem;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-menu > a:not(.nav-call):hover::after,
.site-menu > a:not(.nav-call):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-call,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 46px;
  padding: 0.75rem 1.05rem;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.15;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.nav-call {
  background: var(--ember);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(239, 95, 27, 0.28);
}

.nav-call:hover,
.button:hover {
  transform: translateY(-2px);
}

.nav-call:focus-visible,
.button:focus-visible,
.menu-toggle:focus-visible,
.gallery-item:focus-visible,
.lightbox button:focus-visible,
.cookie-banner button:focus-visible,
.gdpr-modal button:focus-visible,
.footer-links button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.site-header.is-scrolled .menu-toggle,
.site-header.is-open .menu-toggle {
  background: rgba(23, 23, 19, 0.08);
  color: var(--ink);
}

.menu-toggle span:not(.sr-only) {
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.is-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--coal);
  color: var(--white);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  opacity: 0.82;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(11, 14, 12, 0.92) 0%, rgba(11, 14, 12, 0.64) 46%, rgba(11, 14, 12, 0.22) 100%),
    linear-gradient(180deg, rgba(11, 14, 12, 0.55) 0%, rgba(11, 14, 12, 0.08) 42%, rgba(11, 14, 12, 0.58) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.6fr);
  align-items: end;
  gap: 2rem;
  padding: 8.5rem 0 4rem;
}

.hero-copy {
  max-width: 740px;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--gold);
  font-weight: 900;
  font-size: 0.88rem;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 1rem;
  font-size: 4.85rem;
  max-width: 12ch;
}

h2 {
  margin-bottom: 1rem;
  font-size: 2.75rem;
}

h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.hero-text {
  max-width: 650px;
  margin-bottom: 1.55rem;
  font-size: 1.24rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button-primary {
  background: var(--ember);
  color: var(--white);
  box-shadow: 0 16px 36px rgba(239, 95, 27, 0.32);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.contact-section .button-secondary,
.seo-section .button-secondary {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.contact-section .button-secondary:hover {
  background: #eef3ee;
}

.hero-panel {
  align-self: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(16, 20, 17, 0.58);
  backdrop-filter: blur(16px);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.hero-panel img {
  width: 100%;
  max-width: 280px;
  height: auto;
  margin-bottom: 1rem;
  padding: 0.45rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
}

.hero-panel dl,
.hero-panel dd {
  margin: 0;
}

.hero-panel dl {
  display: grid;
  gap: 0.8rem;
}

.hero-panel div {
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-panel dt {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-panel dd {
  margin-top: 0.15rem;
  color: var(--white);
  font-weight: 900;
}

.quick-strip {
  position: relative;
  background: var(--forest);
  color: var(--white);
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.quick-grid div {
  min-height: 112px;
  padding: 1.35rem 1.4rem;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.quick-grid div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.quick-grid strong,
.quick-grid span {
  display: block;
}

.quick-grid strong {
  margin-bottom: 0.25rem;
  font-size: 1.05rem;
}

.quick-grid span {
  color: rgba(255, 255, 255, 0.78);
}

.section {
  padding: 6.5rem 0;
}

.split-layout,
.proof-layout,
.contact-layout,
.seo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  align-items: center;
  gap: 4rem;
}

.section-copy p,
.proof-copy p,
.contact-copy p,
.seo-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.quality-section {
  background: var(--paper);
}

.image-stack {
  position: relative;
  min-height: 520px;
}

.image-stack img {
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.image-stack-main {
  width: 86%;
  height: 440px;
  margin-left: auto;
}

.image-stack-small {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48%;
  height: 250px;
  border: 8px solid var(--paper);
}

.service-section {
  background: #ffffff;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2.5rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-number {
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--teal);
  color: var(--white);
  font-weight: 900;
}

.proof-section {
  background: var(--coal);
  color: var(--white);
}

.proof-layout {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
}

.proof-media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 8px;
}

.proof-copy p,
.proof-copy .check-list {
  color: rgba(255, 255, 255, 0.78);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.85rem;
}

.check-list li {
  position: relative;
  padding-left: 2rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: inset 0 0 0 4px var(--coal);
  border: 1px solid var(--gold);
}

.gallery-section {
  background: var(--paper);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  gap: 0.85rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  min-height: 0;
  padding: 0;
  border-radius: 8px;
  background: var(--coal);
}

.gallery-item::after {
  content: attr(data-caption);
  position: absolute;
  inset: auto 0 0 0;
  padding: 3rem 1rem 1rem;
  color: var(--white);
  font-weight: 800;
  text-align: left;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72));
  transform: translateY(18%);
  opacity: 0;
  transition: transform 180ms ease, opacity 180ms ease;
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  transform: translateY(0);
  opacity: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease, opacity 260ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.04);
  opacity: 0.86;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.seo-section {
  background: #edf3ef;
}

.seo-layout {
  align-items: start;
}

.seo-copy {
  columns: 1;
}

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

.contact-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.72fr);
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 7rem;
}

.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 1.35rem;
  box-shadow: 0 18px 48px rgba(16, 20, 17, 0.11);
}

.contact-panel img {
  width: 100%;
  max-width: 330px;
  height: auto;
  margin-bottom: 1.35rem;
}

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

.contact-line span,
.hours-title span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-line strong {
  display: block;
  margin-top: 0.2rem;
  font-size: 1.1rem;
}

.hours-box {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.hours-title {
  margin-bottom: 1rem;
}

.hours-title strong {
  display: block;
  margin-top: 0.2rem;
  color: var(--forest);
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.3rem;
}

.hours-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 42px;
  padding: 0.5rem 0.7rem;
  border-radius: 6px;
}

.hours-list li.is-today {
  background: #eef3ee;
  color: var(--forest);
}

.hours-list span {
  font-weight: 700;
}

.hours-list strong {
  text-align: right;
  font-size: 0.94rem;
}

.site-footer {
  background: var(--coal);
  color: rgba(255, 255, 255, 0.78);
  padding: 1.4rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-copy {
  display: grid;
  gap: 0.25rem;
}

.footer-inner p {
  margin: 0;
}

.footer-copy p + p {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 0 0 auto;
}

.footer-inner a,
.footer-links button {
  color: var(--white);
  font-weight: 800;
}

.footer-links button {
  padding: 0;
  background: transparent;
  border: 0;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  z-index: 450;
  width: min(680px, calc(100% - 28px));
  display: none;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(16, 20, 17, 0.95);
  color: var(--white);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
  transform: translateX(-50%);
}

.cookie-banner.is-visible {
  display: grid;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 0.15rem;
}

.cookie-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  line-height: 1.45;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.cookie-link,
.cookie-accept {
  min-height: 42px;
  border-radius: 8px;
  font-weight: 900;
}

.cookie-link {
  padding: 0.65rem 0.85rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.cookie-accept {
  padding: 0.65rem 1rem;
  background: var(--ember);
  color: var(--white);
}

.gdpr-modal {
  position: fixed;
  inset: 0;
  z-index: 520;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(8, 10, 8, 0.78);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.gdpr-modal.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.gdpr-panel {
  position: relative;
  width: min(680px, 100%);
  max-height: min(760px, calc(100vh - 32px));
  overflow: auto;
  padding: 2rem;
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.gdpr-panel h2 {
  font-size: 2rem;
}

.gdpr-panel p {
  color: var(--muted);
}

.gdpr-credit {
  padding: 1rem;
  border-radius: 8px;
  background: #eef3ee;
  color: var(--forest) !important;
  font-weight: 900;
}

.gdpr-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(23, 23, 19, 0.08);
  color: var(--ink);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 4.5rem 5rem;
  background: rgba(8, 10, 8, 0.92);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.lightbox.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.lightbox figure {
  width: min(100%, 1050px);
  margin: 0;
}

.lightbox img {
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  border-radius: 8px;
  background: var(--coal);
}

.lightbox figcaption {
  margin-top: 0.85rem;
  color: var(--white);
  font-weight: 800;
  text-align: center;
}

.lightbox button {
  position: absolute;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.lightbox-close {
  top: 1.2rem;
  right: 1.2rem;
}

.lightbox-prev {
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
}

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

.has-js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.has-js .reveal.is-visible,
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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

@media (max-width: 1080px) {
  .brand {
    width: 210px;
  }

  h1 {
    font-size: 3.85rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero-content,
  .split-layout,
  .proof-layout,
  .contact-layout,
  .seo-layout {
    gap: 2.6rem;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 860px) {
  .site-header {
    padding: 0.55rem 0;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-menu {
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 14px;
    right: 14px;
    display: grid;
    gap: 0;
    padding: 0.85rem;
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-header.is-open .site-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-menu a {
    min-height: 46px;
  }

  .site-menu > a:not(.nav-call) {
    display: flex;
    align-items: center;
    padding: 0.65rem 0.55rem;
    border-bottom: 1px solid var(--line);
  }

  .site-menu > a:not(.nav-call)::after {
    display: none;
  }

  .nav-call {
    margin-top: 0.75rem;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-content {
    grid-template-columns: 1fr;
    align-items: center;
    padding: 7.5rem 0 2.4rem;
  }

  .hero-panel {
    max-width: 460px;
  }

  .quick-grid,
  .split-layout,
  .proof-layout,
  .contact-layout,
  .seo-layout {
    grid-template-columns: 1fr;
  }

  .quick-grid div {
    min-height: auto;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .section {
    padding: 4.8rem 0;
  }

  .contact-copy {
    position: static;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 15px;
  }

  .section-inner {
    width: min(100% - 28px, 1160px);
  }

  .nav-shell {
    width: min(100% - 22px, 1220px);
  }

  .brand {
    width: 176px;
    height: 50px;
    padding: 0.2rem 0.35rem;
  }

  h1 {
    font-size: 2.8rem;
    max-width: 11ch;
  }

  h2 {
    font-size: 1.85rem;
  }

  .hero-text {
    font-size: 1.06rem;
  }

  .button,
  .nav-call {
    width: 100%;
    min-height: 48px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(11, 14, 12, 0.82) 0%, rgba(11, 14, 12, 0.56) 38%, rgba(11, 14, 12, 0.86) 100%);
  }

  .hero {
    min-height: 78svh;
  }

  .hero-content {
    padding: 6.5rem 0 2rem;
  }

  .hero-panel {
    display: none;
  }

  .image-stack {
    min-height: 0;
    display: grid;
    gap: 0.85rem;
  }

  .image-stack-main,
  .image-stack-small {
    position: static;
    width: 100%;
    height: 280px;
    border: 0;
  }

  .service-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .gallery-grid {
    grid-auto-rows: 245px;
  }

  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .proof-media img {
    height: 340px;
  }

  .contact-panel {
    padding: 1rem;
  }

  .hours-list li {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
  }

  .hours-list strong {
    text-align: left;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    width: 100%;
    justify-content: space-between;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .gdpr-panel {
    padding: 1.35rem;
  }

  .gdpr-panel h2 {
    padding-right: 2.2rem;
    font-size: 1.65rem;
  }

  .lightbox {
    padding: 4.2rem 0.85rem;
  }

  .lightbox-arrow {
    bottom: 1rem;
    top: auto;
    transform: none;
  }

  .lightbox-prev {
    left: calc(50% - 60px);
  }

  .lightbox-next {
    right: calc(50% - 60px);
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 1.65rem;
  }

  .brand {
    width: 152px;
  }
}
