@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 700;
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  src: url("../fonts/lato-400-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  src: url("../fonts/lato-700-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --gdp-green: #007d2c;
  --gdp-green-hover: #006f27;
  --gdp-blue: #4aa5d2;
  --gdp-ink: #313131;
  --gdp-text: #333333;
  --gdp-muted: #696969;
  --gdp-surface: #f5f6f5;
  --gdp-border: #dde2de;
  --gdp-white: #ffffff;
  --gdp-dark: #333333;
  --gdp-font-body: "Lato", "Segoe UI", sans-serif;
  --gdp-font-display: "Montserrat", Arial, sans-serif;
  --gdp-container: 81.25rem;
  --gdp-container-narrow: 51rem;
  --gdp-gutter: clamp(1.25rem, 4vw, 3rem);
  --gdp-section-space: clamp(4.5rem, 8vw, 8.25rem);
  --gdp-header-height: 6.5rem;
  --gdp-shadow: 0 0.25rem 1.88rem rgb(80 78 78 / 15%);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--gdp-header-height);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--gdp-white);
  color: var(--gdp-text);
  font-family: var(--gdp-font-body);
  font-size: clamp(1rem, 0.55vw + 0.86rem, 1.375rem);
  font-weight: 400;
  line-height: 1.48;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-is-open {
  overflow: hidden;
}

::selection {
  background: var(--gdp-green);
  color: var(--gdp-white);
}

button,
a,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgb(0 153 51 / 18%);
}

button {
  color: inherit;
}

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

img {
  height: auto;
}

a {
  color: var(--gdp-green);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--gdp-green-hover);
}

:where(a, button, input, textarea, select):focus-visible {
  outline: 0.1875rem solid var(--gdp-green);
  outline-offset: 0.1875rem;
}

p,
ul,
ol,
dl,
figure,
blockquote {
  margin-block: 0 1.4em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-block: 0 0.62em;
  color: var(--gdp-ink);
  font-family: var(--gdp-font-display);
  line-height: 1.14;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 600;
  letter-spacing: 0.02em;
}

h2 {
  font-family: var(--gdp-font-body);
  font-size: clamp(2rem, 4.2vw, 2.75rem);
  font-weight: 400;
  text-transform: uppercase;
}

h3 {
  color: var(--gdp-green);
  font-size: clamp(1.35rem, 2.5vw, 1.875rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h4 {
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  line-height: 1.58;
  text-transform: uppercase;
}

[id] {
  scroll-margin-top: var(--gdp-header-height);
}

[hidden],
.is-hidden {
  display: none !important;
}

.site-container,
.site-shell {
  width: min(100% - (2 * var(--gdp-gutter)), var(--gdp-container));
  margin-inline: auto;
}

.site-container--narrow {
  max-width: var(--gdp-container-narrow);
}

.section {
  position: relative;
  padding-block: var(--gdp-section-space);
}

.section--surface {
  background: var(--gdp-surface);
}

.section-heading {
  max-width: 58rem;
  margin-block-end: clamp(2.5rem, 5vw, 4.5rem);
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.welcome h2,
.about h2,
.contact h2 {
  color: var(--gdp-green);
}

.section-heading p {
  margin-inline: auto;
  color: var(--gdp-muted);
  font-family: var(--gdp-font-display);
  font-size: clamp(1rem, 1.5vw, 1.0625rem);
  font-weight: 500;
  line-height: 1.88;
  text-wrap: pretty;
}

.flow-content > * + * {
  margin-block-start: 1.5rem;
}

.flow-content > :last-child {
  margin-block-end: 0;
}

.button,
.wp-element-button,
button[type="submit"],
input[type="submit"] {
  display: inline-flex;
  min-height: 3.0625rem;
  align-items: center;
  justify-content: center;
  padding: 0.85rem clamp(1.75rem, 4vw, 3.0625rem);
  border: 0;
  border-radius: 0;
  background: var(--gdp-green);
  color: var(--gdp-white);
  cursor: pointer;
  font-family: var(--gdp-font-display);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1125rem;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover,
.wp-element-button:hover,
button[type="submit"]:hover,
input[type="submit"]:hover {
  background: var(--gdp-green-hover);
  color: var(--gdp-white);
}

.button--ghost,
.button--secondary {
  border: 0.0625rem solid currentColor;
  background: transparent;
  color: var(--gdp-white);
}

.button--ghost:hover,
.button--secondary:hover {
  border-color: var(--gdp-green);
  background: var(--gdp-white);
  color: var(--gdp-green);
}

.screen-reader-text {
  position: absolute !important;
  width: 0.0625rem;
  height: 0.0625rem;
  padding: 0;
  margin: -0.0625rem;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  z-index: 100000;
  top: 0.75rem;
  left: 0.75rem;
  width: auto;
  height: auto;
  clip: auto;
  padding: 0.85rem 1rem;
  overflow: visible;
  background: var(--gdp-white);
  color: var(--gdp-ink);
  font-size: 1rem;
  white-space: normal;
}

/* Header */
.site-header {
  z-index: 1000;
  width: 100%;
  background: var(--gdp-dark);
  color: var(--gdp-white);
}

.site-header--transparent {
  position: absolute;
  inset: 0 0 auto;
  background: transparent;
}

.site-header--dark {
  position: relative;
}

.site-header__inner {
  display: flex;
  min-height: var(--gdp-header-height);
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-branding {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
}

.custom-logo-link,
.site-footer__logo {
  display: block;
}

.custom-logo,
.site-branding .custom-logo {
  width: 15.875rem;
  max-height: 3.3125rem;
  object-fit: contain;
  object-position: left center;
}

.site-navigation {
  margin-inline-start: auto;
}

.primary-menu,
.primary-menu ul,
.footer-menu,
.site-footer__legal ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.primary-menu {
  display: flex;
  align-items: center;
}

.primary-menu a {
  display: flex;
  min-height: 3rem;
  align-items: center;
  padding-inline: clamp(0.75rem, 1.8vw, 1.75rem);
  color: var(--gdp-white);
  font-family: var(--gdp-font-display);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1125rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity 160ms ease;
}

.primary-menu a:hover,
.primary-menu .current-menu-item > a,
.primary-menu .current_page_item > a {
  color: var(--gdp-white);
  opacity: 0.65;
}

.primary-menu .menu-item-has-children {
  position: relative;
}

.primary-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  min-width: 15rem;
  padding-block: 0.5rem;
  background: var(--gdp-dark);
  box-shadow: var(--gdp-shadow);
}

.primary-menu .menu-item-has-children:hover > .sub-menu,
.primary-menu .menu-item-has-children:focus-within > .sub-menu {
  display: block;
}

.primary-menu .sub-menu a {
  min-height: 2.75rem;
  padding-inline: 1.25rem;
}

.menu-toggle {
  display: none;
  min-width: 3rem;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.5rem;
  border: 0;
  background: transparent;
  color: var(--gdp-white);
  cursor: pointer;
  font-family: var(--gdp-font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-toggle__icon {
  display: grid;
  width: 1.5rem;
  gap: 0.3rem;
}

.menu-toggle__icon span {
  display: block;
  width: 100%;
  height: 0.125rem;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:nth-child(1) {
  transform: translateY(0.425rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:nth-child(3) {
  transform: translateY(-0.425rem) rotate(-45deg);
}

.admin-bar .site-header--transparent {
  top: 2rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: max(38rem, 100svh);
  overflow: hidden;
  background: #071827;
  color: var(--gdp-white);
}

.hero__slides,
.hero__slide,
.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__slide {
  z-index: 0;
  display: grid;
  min-height: 100%;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 650ms ease, visibility 650ms ease;
}

.hero__slide.is-active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__shade {
  background: linear-gradient(90deg, rgb(3 15 25 / 68%) 0%, rgb(3 15 25 / 55%) 55%, rgb(3 15 25 / 62%) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: max(38rem, 100svh);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-block: calc(var(--gdp-header-height) + 4rem) 7rem;
}

.hero__slide--center .hero__content {
  align-items: center;
  text-align: center;
}

.hero__slide--right .hero__content {
  align-items: flex-end;
  text-align: right;
}

.hero__title {
  max-width: 13ch;
  margin-block-end: 1.5rem;
  color: var(--gdp-white);
  font-family: var(--gdp-font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 0.125rem 1.5rem rgb(0 0 0 / 28%);
}

.hero__text {
  max-width: 44ch;
  margin-block-end: 2.25rem;
  color: var(--gdp-white);
  font-family: var(--gdp-font-display);
  font-size: clamp(1.25rem, 2.35vw, 2.1875rem);
  font-weight: 200;
  line-height: 1.35;
  text-wrap: pretty;
}

.hero__slide--center .hero__text {
  margin-inline: auto;
}

.hero__slide--right .hero__text {
  margin-inline-start: auto;
}

.hero__controls {
  position: absolute;
  z-index: 5;
  inset: 0;
  pointer-events: none;
}

.hero__arrow {
  position: absolute;
  top: 50%;
  display: grid;
  width: 3.75rem;
  height: 5rem;
  place-items: center;
  padding: 0;
  border: 0;
  background: rgb(0 0 0 / 24%);
  color: var(--gdp-white);
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-size: 3rem;
  line-height: 1;
  pointer-events: auto;
  transform: translateY(-50%);
  transition: background-color 160ms ease;
}

.hero__arrow:hover {
  background: rgb(0 0 0 / 52%);
}

.hero__arrow--previous {
  left: 0;
}

.hero__arrow--next {
  right: 0;
}

.hero__pagination {
  position: absolute;
  bottom: 4.75rem;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  pointer-events: auto;
  transform: translateX(-50%);
}

.hero__dots {
  display: flex;
  gap: 0.125rem;
}

.hero__dot {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.hero__dot::before {
  width: 0.75rem;
  height: 0.75rem;
  border: 0.125rem solid var(--gdp-white);
  border-radius: 50%;
  background: transparent;
  content: "";
  transition: background-color 160ms ease, transform 160ms ease;
}

.hero__dot.is-active::before {
  background: var(--gdp-white);
  transform: scale(1.14);
}

.hero__autoplay {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  padding: 0;
  border: 0.125rem solid rgb(255 255 255 / 75%);
  border-radius: 50%;
  background: rgb(0 0 0 / 28%);
  color: var(--gdp-white);
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-size: 0.875rem;
  line-height: 1;
}

.hero__autoplay:hover {
  background: rgb(0 0 0 / 55%);
}

/* Welcome and content splits */
.section--overlap {
  z-index: 4;
  width: min(100% - (2 * var(--gdp-gutter)), var(--gdp-container));
  padding-block: 0;
  margin: -4.0625rem auto 0;
  background: var(--gdp-white);
  box-shadow: var(--gdp-shadow);
}

.section--overlap .site-shell {
  width: 100%;
}

.split-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.split-layout__content {
  min-width: 0;
}

.split-layout--welcome .split-layout__content {
  padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(3rem, 6vw, 5.5rem) clamp(1.5rem, 5vw, 5rem);
}

.welcome__promise {
  max-width: 39rem;
  color: var(--gdp-ink);
  font-size: 1.0625rem;
  letter-spacing: 0.025em;
  line-height: 1.58;
}

.welcome__media {
  align-self: end;
  margin: 0;
}

.welcome__media img {
  width: min(100%, 47.9375rem);
  margin-inline: auto;
}

/* Offers */
.offers {
  padding-block-start: clamp(5rem, 9vw, 9rem);
}

.offer-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.25rem clamp(0.75rem, 2vw, 1.75rem);
  margin-block-end: clamp(2.5rem, 5vw, 4rem);
}

.offer-filter__label {
  width: 100%;
  margin-block-end: 0.75rem;
  color: var(--gdp-muted);
  font-family: var(--gdp-font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.offer-filter__controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem clamp(0.75rem, 2vw, 1.75rem);
}

.offer-filter__button {
  position: relative;
  min-height: 2.75rem;
  padding: 0.5rem 0;
  border: 0;
  background: transparent;
  color: var(--gdp-muted);
  cursor: pointer;
  font-family: var(--gdp-font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.055em;
  line-height: 1.3;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.offer-filter__button::after {
  position: absolute;
  right: 0;
  bottom: 0.25rem;
  left: 0;
  height: 0.125rem;
  background: var(--gdp-green);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 160ms ease, transform 160ms ease;
}

.offer-filter__button:hover,
.offer-filter__button.is-active {
  color: var(--gdp-green);
}

.offer-filter__button.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.offer-grid,
.angebot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.75rem);
}

.angebot-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  background: var(--gdp-white);
  box-shadow: var(--gdp-shadow);
}

.angebot-card__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #ecefec;
}

.angebot-card__media::after {
  position: absolute;
  inset: 0;
  background: rgb(0 153 51 / 76%);
  content: "";
  opacity: 0;
  transition: opacity 320ms cubic-bezier(0.29, 0.22, 0.11, 1);
}

.angebot-card:hover .angebot-card__media::after,
.angebot-card:focus-within .angebot-card__media::after {
  opacity: 1;
}

.angebot-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.angebot-card:hover .angebot-card__media img,
.angebot-card:focus-within .angebot-card__media img {
  transform: scale(1.025);
}

.angebot-card__placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  align-content: center;
  justify-items: center;
  background:
    linear-gradient(145deg, rgb(0 125 44 / 94%), rgb(0 92 32 / 98%));
  color: var(--gdp-white);
  font-family: var(--gdp-font-display);
  text-transform: uppercase;
}

.angebot-card__placeholder::before {
  content: "GdP";
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1;
}

.angebot-card__placeholder::after {
  margin-block-start: 0.65rem;
  content: "Service Bremen";
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.angebot-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2rem);
}

.angebot-card__categories,
.single-offer__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.75rem;
  padding: 0;
  margin: 0 0 0.75rem;
  color: var(--gdp-green);
  font-family: var(--gdp-font-display);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  list-style: none;
  text-transform: uppercase;
}

.angebot-card__title {
  margin-block-end: 1rem;
  font-family: var(--gdp-font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  line-height: 1.55;
  text-transform: uppercase;
}

.angebot-card__title a {
  color: var(--gdp-ink);
  text-decoration: none;
}

.angebot-card__title a:hover {
  color: var(--gdp-green);
}

.angebot-card__excerpt {
  color: var(--gdp-muted);
  font-size: 0.9375rem;
  line-height: 1.62;
}

.angebot-card__excerpt p:last-child {
  margin-block-end: 0;
}

.angebot-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-block-start: auto;
  padding-block-start: 1.5rem;
  font-family: var(--gdp-font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.empty-state,
.offer-filter__empty,
.no-results {
  padding: clamp(2rem, 5vw, 4rem);
  border: 0.0625rem solid var(--gdp-border);
  background: var(--gdp-surface);
  text-align: center;
}

/* About and contact */
.split-layout--about {
  grid-template-columns: minmax(0, 2fr) minmax(17rem, 1fr);
}

.about__media {
  margin: 0;
  padding-inline: clamp(0rem, 4vw, 3rem);
}

.about__media img {
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
}

.contact {
  padding-block-end: 0;
}

.contact__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2.5rem, 7vw, 7rem);
  padding-block-end: var(--gdp-section-space);
}

.contact__panel {
  min-width: 0;
  margin: 0;
  font-style: normal;
}

.contact__panel p {
  overflow-wrap: anywhere;
}

.contact__panel a {
  color: var(--gdp-text);
  font-weight: 700;
}

.contact__map-link {
  padding-block: clamp(3rem, 6vw, 5rem);
  background: var(--gdp-dark);
  color: var(--gdp-white);
}

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

.contact__map-inner p {
  margin: 0;
  font-family: var(--gdp-font-display);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 500;
}

/* Footer */
.site-footer {
  background: var(--gdp-green);
  color: var(--gdp-white);
}

.site-footer__main {
  display: grid;
  grid-template-columns: minmax(13rem, 1.25fr) repeat(2, minmax(10rem, 1fr));
  gap: clamp(2rem, 5vw, 4.5rem);
  padding-block: clamp(4rem, 7vw, 5.8125rem) clamp(3rem, 5vw, 3.625rem);
}

.site-footer__main--has-menu {
  grid-template-columns: minmax(13rem, 1.25fr) repeat(3, minmax(10rem, 1fr));
}

.site-footer__logo img {
  width: 15.875rem;
  height: auto;
}

.site-footer__heading {
  margin-block-end: 1.5rem;
  color: var(--gdp-white);
  font-family: var(--gdp-font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: 0.1125rem;
  line-height: 1.4;
  text-transform: uppercase;
}

.site-footer p,
.site-footer address,
.site-footer li,
.site-footer dt,
.site-footer dd {
  font-family: var(--gdp-font-display);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.72;
}

.site-footer a {
  color: var(--gdp-white);
}

.site-header :where(a, button):focus-visible,
.hero :where(a, button):focus-visible,
.site-footer :where(a, button):focus-visible {
  outline-color: var(--gdp-white);
  box-shadow: 0 0 0 0.125rem var(--gdp-dark);
}

.site-footer__contact-list,
.site-footer__hours dl,
.site-footer__hours-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer__contact-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem;
}

.site-footer__hours dl > div + div,
.site-footer__hours-list li + li {
  margin-block-start: 0.75rem;
}

.site-footer__hours dt {
  font-weight: 600;
}

.site-footer__hours dd {
  margin: 0;
}

.footer-menu {
  display: grid;
  gap: 0.65rem;
}

.site-footer__bottom {
  border-top: 0.0625rem solid rgb(255 255 255 / 25%);
}

.site-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1.25rem;
}

.site-footer__bottom p {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
}

.site-footer__legal ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}

.site-footer__legal a {
  font-size: 0.75rem;
}

/* Inner pages */
.site-main--page,
.site-main--index,
.site-main--offers,
.site-main--error {
  min-height: 55vh;
  padding-block: clamp(4rem, 8vw, 7rem);
}

.page-entry__header,
.archive-header {
  max-width: 60rem;
  margin-block-end: clamp(3rem, 6vw, 5rem);
}

.page-entry__title,
.archive-header__title,
.single-offer__title,
.error-404__title,
.no-results__title {
  color: var(--gdp-green);
  font-family: var(--gdp-font-body);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 400;
  text-transform: uppercase;
}

.archive-header__eyebrow {
  margin-block-end: 1rem;
  color: var(--gdp-muted);
  font-family: var(--gdp-font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.entry-content {
  text-wrap: pretty;
}

.entry-content > * {
  max-width: 65ch;
}

.entry-content > .alignwide {
  max-width: var(--gdp-container);
}

.entry-content > .alignfull {
  max-width: none;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  margin-block-start: 1.6em;
}

.entry-content a {
  overflow-wrap: anywhere;
}

.entry-content table {
  display: block;
  max-width: 100%;
  border-collapse: collapse;
  overflow-x: auto;
  font-variant-numeric: tabular-nums;
}

.entry-content th,
.entry-content td {
  padding: 0.75rem;
  border: 0.0625rem solid var(--gdp-border);
  text-align: left;
  vertical-align: top;
}

.site-main--single-offer {
  min-height: 55vh;
}

.single-offer__header {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: var(--gdp-surface);
}

.single-offer__back {
  display: inline-flex;
  gap: 0.5rem;
  margin-block-end: 2rem;
  font-family: var(--gdp-font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.single-offer__lead {
  max-width: 55ch;
  color: var(--gdp-muted);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
}

.single-offer__media {
  margin-block: clamp(3rem, 6vw, 5rem);
}

.single-offer__media img {
  width: 100%;
  max-height: 45rem;
  object-fit: contain;
}

.single-offer__content {
  padding-block-end: clamp(4rem, 8vw, 7rem);
}

.single-offer__notice {
  margin-block-start: clamp(2.5rem, 6vw, 4rem);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-inline-start: 0.3rem solid var(--gdp-green);
  background: var(--gdp-surface);
}

.single-offer__notice h2 {
  margin-block-end: 0.75rem;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

.single-offer__notice p {
  max-width: 60ch;
  margin-block-end: 1.5rem;
  color: var(--gdp-muted);
}

.single-offer__navigation {
  padding-block: 2rem 5rem;
  border-top: 0.0625rem solid var(--gdp-border);
}

.post-navigation .nav-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.post-navigation .nav-next {
  text-align: right;
}

.post-navigation a {
  display: grid;
  gap: 0.35rem;
  text-decoration: none;
}

.nav-subtitle {
  color: var(--gdp-muted);
  font-family: var(--gdp-font-display);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.nav-title {
  color: var(--gdp-ink);
  font-weight: 700;
}

.post-list {
  display: grid;
  gap: 2rem;
}

.post-summary {
  display: grid;
  grid-template-columns: minmax(12rem, 0.75fr) minmax(0, 1.5fr);
  gap: 2rem;
  padding-block-end: 2rem;
  border-bottom: 0.0625rem solid var(--gdp-border);
}

.post-summary__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.post-summary__title {
  font-family: var(--gdp-font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  text-transform: none;
}

.post-summary__title a {
  color: var(--gdp-ink);
  text-decoration: none;
}

.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-block-start: 3rem;
}

.pagination .page-numbers {
  display: grid;
  min-width: 2.75rem;
  min-height: 2.75rem;
  place-items: center;
  padding: 0.5rem;
  border: 0.0625rem solid var(--gdp-border);
  text-decoration: none;
}

.pagination .current,
.pagination a:hover {
  border-color: var(--gdp-green);
  background: var(--gdp-green);
  color: var(--gdp-white);
}

.error-404 {
  text-align: center;
}

.error-404__code {
  margin: 0;
  color: var(--gdp-green);
  font-family: var(--gdp-font-display);
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.error-404__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-block: 2.5rem;
}

.error-404 .button--secondary {
  border-color: var(--gdp-green);
  color: var(--gdp-green);
}

.search-form {
  display: flex;
  max-width: 35rem;
  margin-inline: auto;
}

.search-form label {
  flex: 1;
}

.search-field {
  width: 100%;
  min-height: 3.0625rem;
  padding: 0.75rem 1rem;
  border: 0.0625rem solid var(--gdp-border);
  border-radius: 0;
}

@media (max-width: 75rem) {
  .primary-menu a {
    padding-inline: 0.75rem;
    font-size: 0.75rem;
  }

  .hero__content {
    padding-inline: 4.75rem;
  }
}

@media (max-width: 60rem) {
  :root {
    --gdp-header-height: 5.25rem;
  }

  .site-header,
  .site-header--transparent {
    background: var(--gdp-dark);
  }

  .site-header__inner {
    position: relative;
    min-height: var(--gdp-header-height);
  }

  .custom-logo,
  .site-branding .custom-logo {
    width: min(13rem, 55vw);
    max-height: 2.75rem;
  }

  .menu-toggle {
    display: inline-flex;
    margin-inline-start: auto;
  }

  .site-navigation {
    position: absolute;
    top: 100%;
    right: calc(-1 * var(--gdp-gutter));
    left: calc(-1 * var(--gdp-gutter));
    max-height: calc(100vh - var(--gdp-header-height));
    overflow-y: auto;
    overscroll-behavior: contain;
    background: var(--gdp-dark);
    box-shadow: 0 1rem 1.5rem rgb(0 0 0 / 20%);
  }

  .site-navigation[hidden] {
    display: none !important;
  }

  .primary-menu {
    display: block;
    padding-block: 0.75rem 1.25rem;
  }

  .primary-menu a {
    min-height: 3.25rem;
    padding-inline: var(--gdp-gutter);
    border-top: 0.0625rem solid rgb(255 255 255 / 10%);
    font-size: 0.8125rem;
  }

  .primary-menu .sub-menu {
    position: static;
    display: block;
    padding: 0 0 0 1rem;
    box-shadow: none;
  }

  .hero,
  .hero__content {
    min-height: max(36rem, 92svh);
  }

  .hero__content,
  .hero__slide--right .hero__content,
  .hero__slide--left .hero__content {
    align-items: center;
    padding-inline: clamp(2.25rem, 8vw, 4.75rem);
    text-align: center;
  }

  .hero__text,
  .hero__slide--right .hero__text {
    margin-inline: auto;
  }

  .hero__arrow {
    width: 2.75rem;
    height: 4rem;
  }

  .split-layout,
  .split-layout--about {
    grid-template-columns: 1fr;
  }

  .split-layout--welcome .split-layout__content {
    padding: clamp(3rem, 7vw, 4.5rem) clamp(1.5rem, 5vw, 4rem) 0;
  }

  .welcome__media {
    width: min(100%, 38rem);
    margin-inline: auto;
  }

  .about__media {
    width: min(100%, 28rem);
    margin-inline: auto;
  }

  .site-footer__main,
  .site-footer__main--has-menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 48rem) {
  .admin-bar .site-header--transparent {
    top: 2.875rem;
  }

  .section--overlap {
    width: 100%;
    margin-top: 0;
    box-shadow: none;
  }

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

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact__map-inner,
  .site-footer__bottom-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__main,
  .site-footer__main--has-menu {
    grid-template-columns: 1fr;
  }

  .post-summary {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 35rem) {
  .hero__title {
    font-size: clamp(2.3rem, 12vw, 3.25rem);
  }

  .hero__text {
    font-size: 1.1rem;
  }

  .hero__arrow {
    top: auto;
    bottom: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 2rem;
    transform: none;
  }

  .hero__arrow--previous {
    left: var(--gdp-gutter);
  }

  .hero__arrow--next {
    right: var(--gdp-gutter);
  }

  .hero__pagination {
    bottom: 0.875rem;
  }

  .offer-grid,
  .angebot-grid {
    grid-template-columns: 1fr;
  }

  .post-navigation .nav-links {
    grid-template-columns: 1fr;
  }

  .post-navigation .nav-next {
    text-align: left;
  }

  .search-form {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .hero__controls,
  .offer-filter,
  .contact__map-link {
    display: none !important;
  }

  body {
    color: #000000;
    font-size: 12pt;
  }

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