/* Grundfarben, Typo, Sizes */
:root {
  --bg-main: #f7f4ef;
  --bg-panel: #f5f0e9;
  --bg-dark-1: #1f1f1f;
  --bg-dark-2: #121212;
  --bg-dark-3: #080808;

  --text-main: #111111;
  --text-muted: #666666;
  --text-soft: #444444;
  --text-on-dark: #f5f5f5;

  --border-soft: #dddddd;
  --border-strong: #101010;

  --accent: #111111;

  --font-sans: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  --font-serif: "DM Serif Display", serif;

  --fs-xs: 0.75rem;
  --fs-sm: 0.85rem;
  --fs-base: 1rem;
  --fs-lg: 1.1rem;
}

/* Reset / Basics */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  line-height: 1.5;
  background: var(--bg-main);
  color: var(--text-main);
}

a {
  color: inherit;
  text-decoration: none;
  transition:
    color 0.2s ease,
    opacity 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

/* Anker-Offset fürs Scrollen */

section,
article,
.photo-body {
  scroll-margin-top: 90px;
}

/* Standard-Sektionen */

.section {
  max-width: 1200px;
  margin: 0 auto 4rem;
  padding: 0 1.5rem;
}

.section-inner {
  border-top: 1px solid var(--border-soft);
  padding-top: 2.5rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.3rem, 4.2vw, 3.2rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.section-subtitle {
  max-width: 720px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-soft);
  opacity: 0.85;
}

/* Header / Navigation */

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #f7f4ef;
  border-bottom: 1px solid var(--border-soft);
  backdrop-filter: blur(10px);
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease,
    padding 0.25s ease;
}

.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Header kompakter beim Scrollen (per JS-Klasse) */
.topbar.scrolled {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
  transform: translateY(-2px);
  padding-block: 0.6rem;
}

.nav-left,
.nav-right {
  display: flex;
  gap: 1.5rem;
  font-size: var(--fs-xs);
}

.nav-left a,
.nav-right a {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  padding-bottom: 0.2rem;
}

.nav-left a::after,
.nav-right a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.2s ease;
}

.nav-left a:hover::after,
.nav-right a:hover::after {
  width: 100%;
}

.nav-logo span {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: 0.35em;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #0a2a2f;
}

/* Mobile Burger-Button */

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: #111111;
  border-radius: 999px;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

/* Mobile Menü-Panel (wird per JS ein-/ausgeblendet) */
.nav-group.nav-mobile {
  display: none;
}

/* Hero */

.hero {
  max-width: 1200px;
  margin: 3rem auto 4rem;
  padding: 2rem 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  column-gap: 3rem;
  align-items: flex-end;
  border-bottom: 1px solid var(--border-soft);
  background: #f5f0e9;
}

.hero-text {
  padding-bottom: 2rem;
}

.hero-kicker {
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 0.7rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.4vw, 3.8rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 1.1rem;
}

.hero-subtitle {
  font-size: 0.95rem;
  color: var(--text-soft);
  max-width: 520px;
  margin-bottom: 1.2rem;
}

/* Zusatz-Satz im Hero */

.animated-sentence {
  opacity: 1;
  transform: none;
}

/* Hero-Bild */

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-visual img {
  width: 100%;
  max-width: 520px;
  border-radius: 0.75rem;
  object-fit: cover;
  aspect-ratio: 3 / 4;
  filter: grayscale(100%);
  transition: filter 0.4s ease;
}

.hero-visual img:hover {
  filter: grayscale(0%) saturate(1.15);
}

/* Meta-Links (Practice Areas Übersicht) */

.hero-meta {
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 1.2rem;
}

.hero-meta a {
  position: relative;
  padding-bottom: 0.15rem;
  margin: 0 0.3rem;
}

.hero-meta a:first-child {
  margin-left: 0;
}

.hero-meta span {
  padding: 0 0.45rem;
  opacity: 0.55;
}

.hero-meta a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: currentColor;
  transition: width 0.2s ease;
}

.hero-meta a:hover::after {
  width: 100%;
}

/* Farbakzente für die Bereichs-Links */

.hero-meta--projects a[href="#experimental-media"]:hover {
  color: #0808fe;
}
.hero-meta--projects a[href="#ui-ux"]:hover {
  color: #ff5500;
}
.hero-meta--projects a[href="#graphic-design"]:hover {
  color: #006244;
}
.hero-meta--projects a[href="#web-dev"]:hover {
  color: red;
}
.hero-meta--projects a[href="#photography"]:hover {
  color: purple;
}

/* Buttons */

.btn-primary,
.btn-primary--light,
.btn-ghost {
  display: inline-block;
  border-radius: 999px;
  padding: 0.6rem 1.4rem;
  font-size: var(--fs-sm);
  border: 1px solid var(--accent);
  cursor: pointer;
  margin-top: 0.9rem;
  line-height: 1.2;
}

.btn-primary {
  background: var(--accent);
  color: #f9f9f9;
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-primary--light {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.btn-primary--light:hover {
  background: #ffffff;
  color: #000000;
}

.btn-ghost {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #ffffff;
  text-decoration: underline;
}

.cv-download {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 50px;
}

.cv-link--below {
  display: block;
  text-align: center;
  margin-top: 1rem;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  color: #ddd;
  opacity: 0.85;
  transition: opacity 0.25s ease;
}

.cv-link--below:hover {
  opacity: 1;
}

/* Projects – Header & Bänder */

.projects-overview {
  max-width: none;
  margin: 4rem 0 0;
  padding: 0;
}

.projects-header {
  max-width: 1200px;
  margin: 0 auto 4rem;
  padding: 0 1.5rem;
  border-top: none;
  padding-top: 3.5rem;
  text-align: left;
}

.projects-header .section-title {
  margin-bottom: 0.6rem;
}

.project-band {
  width: 100%;
  padding: 4.5rem 0;
  border-top: 1px solid #e4e4e4;
  border-bottom: 1px solid #e4e4e4;
  background: var(--bg-panel);
}

/* 2-Spalten-Layout */

.project-band-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  gap: 3.5rem;
}

/* Reihenfolge tauschen */

.project-band--reverse .project-band-media {
  order: 2;
}
.project-band--reverse .project-band-text {
  order: 1;
}

/* Dark-Varianten */

.project-band--dark {
  background: radial-gradient(circle at top left, #1e1e1e 0%, #121212 40%, #0a0a0a 100%);
  color: var(--text-on-dark);
  border-color: var(--border-strong);
}

.project-band--dark .project-band-text p {
  color: #dddddd;
}

/* Tags */

.project-meta {
  margin-top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.1rem;
}

.project-tag {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-right: 0.45rem;
  margin-bottom: 0.2rem;
}

.project-tag::after {
  content: " •";
  opacity: 0.6;
}

.project-meta .project-tag:last-child::after {
  content: "";
}

/* Projekt-Bilder */

.project-band-media .project-thumb.thumb-grid {
  display: grid;
  gap: 1.2rem;
}

.project-band-media .project-thumb.thumb-grid img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 1.2rem;
  filter: grayscale(100%);
  transition: filter 0.35s ease;
}

.project-band-media .project-thumb.thumb-grid img:hover {
  filter: grayscale(0%);
}

/* Höhen-Tweaks je Bereich */

.project-band--experimental .project-thumb.thumb-grid img {
  height: 320px;
}

.project-band--ui .project-thumb.thumb-grid img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 1.2rem;
  filter: grayscale(100%);
  transition: filter 0.35s ease;
}

.project-band--designs .project-thumb.thumb-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 820px;
  padding-top: 1rem;
}

.project-band--designs .project-thumb.thumb-grid img {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
  border-radius: 1.2rem;
  filter: grayscale(100%);
  transition: filter 0.35s ease;
}

.project-band--designs .project-thumb.thumb-grid img:hover {
  filter: grayscale(0%);
}

/* Projekt-Texte */

.project-band-text .project-heading {
  font-size: clamp(1.9rem, 3.2vw, 2.4rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: var(--font-serif);
}

.project-band-text p {
  font-size: var(--fs-lg);
  line-height: 1.72;
}

/* Web-Dev Bereich – spezielles Layout */

.project-band--webapi .project-band-inner {
  grid-template-columns: 1.3fr 1.1fr;
}

.project-band--webapi .project-band-media {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.code-card {
  background: #08001b;
  color: #f5f5ff;
  border-radius: 1.1rem;
  padding: 1.2rem 1.5rem 1.4rem;
  max-width: 460px;
  width: 100%;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.6);
  font-family:
    ui-monospace,
    SFMono-Regular,
    Menlo,
    Monaco,
    Consolas,
    "Liberation Mono",
    "Courier New",
    monospace;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.webapi-thumb {
  width: 150px;
  margin-top: -2.8rem;
  margin-right: -3rem;
  border-radius: 1rem;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.35s ease;
}

.webapi-thumb:hover {
  filter: grayscale(0%);
}

/* Photography */

.section-divider {
  height: 4rem;
  background: var(--bg-main);
}

.photo-body {
  background: linear-gradient(
    180deg,
    #111111 0%,
    #151515 40%,
    #181818 70%,
    #1f1f1f 100%
  );
  padding: 5rem 0 6rem;
  border-top: 1px solid #111;
  border-bottom: none;
  color: #fff;
}

.photo-body-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.photo-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
}

.photo-hero-text {
  flex: 0 1 320px;
}

.photo-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.2vw, 2.4rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.photo-hero-copy {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #ddd;
  margin-bottom: 1.5rem;
}

.photo-slider {
  flex: 1 1 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.photo-slider-frame {
  position: relative;
  overflow: hidden;
  border-radius: 1.2rem;
  max-width: 650px;
  width: 100%;
  aspect-ratio: 16 / 9;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  background: #000;
}

.photo-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  filter: grayscale(100%);
  transition:
    opacity 0.5s ease,
    filter 0.4s ease;
}

.photo-slide.active {
  opacity: 1;
  filter: grayscale(0%);
}

.photo-slider-btn {
  border: none;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-slider-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #000;
  transform: translateY(-1px);
}

/* About-Seite */

.about-section {
  position: relative;
  padding: 5rem 0 5.5rem;
  background: radial-gradient(
    circle at top left,
    #1a1a1a 0%,
    #101010 45%,
    #050505 100%
  );
  color: var(--text-on-dark);
  border-top: 1px solid #111;
  border-bottom: 1px solid #111;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("pictures/grain.png");
  background-size: cover;
  opacity: 0.16;
  mix-blend-mode: screen;
  pointer-events: none;
}

.about-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.about-text {
  max-width: 720px;
}

.about-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 0.4rem;
}

.about-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}

.about-body {
  font-size: 0.98rem;
  line-height: 1.8;
  color: #e6e6e6;
  margin-bottom: 1rem;
  margin-right: 80px;
  max-width: 720px;
}

.about-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin: 2rem 0 1.5rem;
}

.about-meta-block h3 {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  opacity: 0.85;
}

.about-meta-block p {
  font-size: 0.9rem;
  color: #d4d4d4;
  max-width: 260px;
}

.about-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-photo-frame {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.about-photo {
  width: 100%;
  max-width: 480px;
  border-radius: 1rem;
  object-fit: cover;
  aspect-ratio: 3 / 4;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  filter: grayscale(90%) brightness(1.08);
  transition: filter 0.4s ease;
  background: #000;
}

.about-photo:hover {
  filter: grayscale(0%) brightness(1.1) saturate(1.05);
}

/* Contact */

.contact-section {
  max-width: none;
  margin: 0;
  padding: 0 0 3.5rem;
  background: linear-gradient(
    180deg,
    #1f1f1f 0%,
    #242424 50%,
    #2a2a2a 100%
  );
  color: #f5f5f5;
  border-top: none;
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem 0;
  border-top: none;
  text-align: left;
}

.contact-section .section-title {
  font-size: clamp(1.6rem, 2.4vw, 1.9rem);
  letter-spacing: 0.18em;
  margin-bottom: 0.6rem;
  color: #ffffff;
}

.contact-text {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  letter-spacing: 0.04em;
  color: #dddddd;
}

.contact-email {
  font-size: 0.92rem;
  color: #ffffff;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: opacity 0.25s ease;
}

.contact-email:hover {
  opacity: 0.6;
}

/* Footer */

.site-footer {
  border-top: none;
  padding: 1.2rem 1.5rem 2rem;
  font-size: 0.8rem;
  color: #cccccc;
  background: linear-gradient(
    180deg,
    #2a2a2a 0%,
    #181818 100%
  );
  text-align: center;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a {
  margin: 0 0.75rem;
  color: #e0e0e0;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.footer-links a:hover {
  opacity: 0.7;
}

/* Scroll-Reveal Klassen sind aktuell nur Marker */

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Sticky-Text bei ausgewählten Projektbändern (Desktop) */

.project-band--experimental .project-band-inner,
.project-band--ui .project-band-inner,
.project-band--designs .project-band-inner {
  align-items: flex-start;
}

.project-band--experimental .project-band-text,
.project-band--ui .project-band-text,
.project-band--designs .project-band-text {
  position: sticky;
  top: 110px;
  align-self: flex-start;
}

/* Responsive ab 900px runter */

@media (max-width: 900px) {
  html,
  body {
    overflow-x: hidden;
  }

  /* Sticky auf Mobile aus */
  .project-band--experimental .project-band-text,
  .project-band--ui .project-band-text,
  .project-band--designs .project-band-text {
    position: static;
  }

  .hero {
    grid-template-columns: 1fr;
    row-gap: 2rem;
    padding-bottom: 2.5rem;
  }

  .project-band-inner {
    grid-template-columns: 1fr;
    padding: 0 1.5rem;
  }

  .project-band-media,
  .project-band--reverse .project-band-media {
    order: 2;
  }

  .project-band-text,
  .project-band--reverse .project-band-text {
    order: 1;
  }

  .project-band--webapi .project-band-inner {
    grid-template-columns: 1fr;
  }

  .project-band--webapi .project-band-media {
    align-items: flex-start;
    width: 100%;
  }

  .project-band--webapi .code-card {
    max-width: 100%;
  }

  .webapi-thumb {
    width: 120px;
    max-width: 40vw;
    margin-top: 1rem;
    margin-right: 0;
    align-self: flex-start;
  }

  .project-band-media .project-thumb.thumb-grid img {
    height: 260px;
  }

  .project-band--designs .project-thumb.thumb-grid img {
    height: 320px;
    object-fit: contain;
  }

  .photo-row {
    flex-direction: column;
    align-items: stretch;
  }

  .photo-hero-text {
    margin-bottom: 1.5rem;
  }

  .photo-slider-frame {
    aspect-ratio: 4 / 3;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-photo {
    max-width: 360px;
  }

  .footer-inner {
    text-align: center;
    justify-content: center;
  }
}

/* Mobile Navigation + Header-Fix */

@media (max-width: 800px) {
  .topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
  }

  body {
    padding-top: 72px;
  }

  .topbar-inner {
    padding: 0.55rem 1rem;
  }

  .nav-left,
  .nav-right {
    display: none;
  }

  .nav-logo {
    position: static;
    transform: none;
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
  }

  .nav-group.nav-mobile {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 0.75rem 1.5rem 1.1rem;
    background: rgba(245, 245, 245, 0.98);
    border-bottom: 1px solid var(--border-soft);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
  }

  .nav-group.nav-mobile.open {
    display: flex;
  }

  .nav-group.nav-mobile .nav-left,
  .nav-group.nav-mobile .nav-right {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    font-size: 0.75rem;
  }

  .nav-group.nav-mobile a {
    padding-bottom: 0;
  }

  .nav-logo span {
    font-size: 0.72rem;
    letter-spacing: 0.28em;
  }

  .nav-toggle.open span:first-child {
    transform: translateY(3px) rotate(45deg);
  }
  .nav-toggle.open span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }
}

/* Extra Mobile-Tweaks */

@media (max-width: 600px) {
  body {
    font-size: 0.95rem;
  }

  .hero,
  .projects-header,
  .project-band-inner,
  .section,
  .photo-body-inner {
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    margin: 0;
    width: 100%;
  }

  .hero {
    margin: 2rem auto 3rem;
    padding-bottom: 2rem;
  }

  .hero-title {
    font-size: 2.1rem;
    letter-spacing: 0.08em;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .hero-kicker,
  .hero-meta,
  .project-tag {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
  }

  .projects-header {
    margin-bottom: 3rem;
  }

  .project-band {
    padding: 3rem 0;
  }

  .project-band--designs .project-thumb.thumb-grid {
    grid-template-columns: 1fr;
  }

  .photo-row {
    gap: 1.5rem;
  }

  .photo-slider-frame {
    aspect-ratio: 3 / 4;
    max-width: 100%;
  }

  .photo-hero-text {
    flex: 1 1 auto;
  }

  .contact-inner {
    padding-top: 2.5rem;
  }

  .site-footer {
    padding: 1rem 1rem 1.8rem;
  }
}
