/* swisseraa GmbH — one-page styles */
:root {
  --hero-img-pos: 58% 48%;
  --hero-img-scale: 1.02;
  --red: #d20000;
  --red-dark: #b00000;
  --text: #1a1a1a;
  --muted: #5c5c5c;
  --border: #e8e8e8;
  --gray-bg: #f6f6f6;
  --footer-bg: #121212;
  --white: #fff;
  --header-h: 72px;
  --radius: 12px;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  --font: "Montserrat", system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
  font-size: 16px;
}

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

a {
  color: var(--red);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  background: var(--red);
  color: var(--white);
  padding: 0.5rem 1rem;
  z-index: 10000;
}

.skip-link:focus {
  left: 8px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
  flex-shrink: 0;
}

.brand:hover {
  text-decoration: none;
  opacity: 0.92;
}

.brand-logo {
  display: block;
  height: clamp(86px, 8.5vw, 112px);
  width: auto;
  max-width: min(430px, 68vw);
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem 1.35rem;
  flex-wrap: wrap;
  justify-content: center;
}

.main-nav a {
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  text-decoration: none;
}

.main-nav a:hover {
  color: var(--red);
}

.main-nav a.active {
  color: var(--red);
  border-bottom-color: var(--red);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
}

.phone-link svg {
  flex-shrink: 0;
}

.phone-link:hover {
  color: var(--red);
  text-decoration: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem 1.25rem;
  border-radius: 6px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--red-dark);
  color: var(--white);
  text-decoration: none;
}

.btn-outline {
  background: var(--white);
  color: var(--text);
  border: 2px solid var(--text);
}

.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  text-decoration: none;
}

.btn-lg {
  padding: 0.85rem 1.5rem;
  font-size: 0.95rem;
}

/* Sections */
.section {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Hero */
.hero {
  padding: 2.75rem 0 5.25rem;
  overflow: hidden;
  background: var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  min-height: min(500px, 72vh);
}

.hero-copy h1 {
  font-size: clamp(1.85rem, 4.2vw, 2.65rem);
  font-weight: 700;
  line-height: 1.18;
  margin: 0 0 1.35rem;
  letter-spacing: -0.035em;
  color: var(--text);
}

.hero-copy p {
  color: #2d2d2d;
  margin: 0 0 1.05rem;
  max-width: 34rem;
  font-size: 1rem;
  line-height: 1.6;
}

.hero-copy p:last-child {
  margin-bottom: 0;
}

.hero-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: min(430px, 54vh);
  aspect-ratio: 1 / 1.04;
  max-height: min(600px, 68vh);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.09);
}

.hero-media-crop {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-media-crop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-img-pos);
  transform: scale(var(--hero-img-scale));
  transform-origin: center center;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    var(--white) 0%,
    rgba(255, 255, 255, 0.9) 10%,
    rgba(255, 255, 255, 0.4) 28%,
    transparent 48%
  );
  pointer-events: none;
}

@media (max-width: 1024px) {
  .hero-media {
    aspect-ratio: 16 / 11;
    max-height: none;
    min-height: 280px;
  }

  .hero-media-crop img {
    object-position: 50% 48%;
    transform: scale(1);
  }

  .hero-media::after {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.94) 0%,
      rgba(255, 255, 255, 0.35) 28%,
      transparent 52%
    );
  }
}

.hero-trust {
  position: relative;
  margin-top: -3.5rem;
  z-index: 2;
}

.trust-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem 1.25rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.trust-item {
  text-align: center;
  padding: 0 0.25rem;
}

.trust-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.5rem;
  color: var(--red);
}

.trust-item h3 {
  font-size: 0.9rem;
  margin: 0 0 0.2rem;
  font-weight: 700;
}

.trust-item p {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
}

/* Cards row */
.cards-4 {
  padding: 2.5rem 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  border: 1px solid var(--border);
}

.service-card .icon-wrap {
  color: var(--red);
  margin-bottom: 0.75rem;
}

.service-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.service-card p {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.service-card .more {
  font-weight: 600;
  font-size: 0.85rem;
}

/* Gray trust strip */
.strip-trust {
  background: var(--gray-bg);
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.strip-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.strip-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.strip-item svg {
  flex-shrink: 0;
  color: var(--red);
}

.strip-item strong {
  display: block;
  margin-bottom: 0.25rem;
}

.strip-item span {
  font-size: 0.9rem;
  color: var(--muted);
}

/* About */
.about {
  padding: 4.75rem 1.25rem;
  position: relative;
}

.about .section-head {
  margin-bottom: 2.5rem;
}

.about-grid {
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 46%, #fafafa 100%);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.06);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  overflow: hidden;
  padding: clamp(1rem, 2.4vw, 1.5rem);
}

.about-photo {
  position: relative;
  min-height: 520px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.1);
}

.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.04) 100%),
    linear-gradient(135deg, rgba(210, 0, 0, 0.16) 0%, transparent 34%);
  pointer-events: none;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  min-height: 520px;
}

.tag {
  color: var(--red);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
}

.about-copy h3 {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
  margin: 0 0 1rem;
}

.about-copy > p {
  color: #3a3a3a;
  margin: 0 0 1.5rem;
  line-height: 1.65;
  max-width: 42rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin: 0 0 1.25rem;
}

.about-stats div {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.95rem 0.85rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}

.about-stats strong {
  display: block;
  color: var(--red);
  font-size: 1.35rem;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.about-stats span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.about-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.95rem;
}

.about-feature-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(210, 0, 0, 0.08);
  color: var(--red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature h3 {
  margin: 0 0 0.2rem;
  font-size: 0.92rem;
}

.about-feature p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
  font-size: 0.95rem;
}

.check-list svg {
  flex-shrink: 0;
  margin-top: 3px;
}

/* Leistungen grid */
.leistungen {
  padding: 4rem 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-bg) 100%);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.section-head h2 {
  font-size: clamp(1.75rem, 3vw, 2.15rem);
  margin: 0 0 0.75rem;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-tile {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}

.service-tile svg {
  color: var(--red);
  margin-bottom: 0.65rem;
}

.service-tile h3 {
  font-size: 1rem;
  margin: 0 0 0.45rem;
}

.service-tile p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.45;
}

/* Referenzen */
.referenzen {
  padding: 4rem 0;
}

.ref-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.ref-card {
  background: var(--gray-bg);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
  min-height: 168px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ref-card .quote {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0 0 1.2rem;
  font-style: italic;
  line-height: 1.55;
}

.ref-card .name {
  font-weight: 700;
  font-size: 0.9rem;
  margin: 0;
}

.ref-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.ref-photos figure {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: #111;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
  min-height: 320px;
}

.ref-photos img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.ref-photos figure:hover img {
  transform: scale(1.04);
}

.ref-photos figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  max-width: calc(100% - 2rem);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  padding: 0.55rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.35;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(8px);
}

.ref-photos figcaption::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

/* Kontakt */
.kontakt {
  padding: 4rem 0 0;
}

.kontakt-visual {
  position: relative;
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-bg) 100%);
  overflow: hidden;
}

.kontakt-card-wrap {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kontakt-card {
  width: min(520px, 100%);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
}

.kontakt-card h2 {
  margin: 0 0 0.25rem;
  font-size: 1.35rem;
}

.kontakt-card .sub {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-rows {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
}

.contact-row a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
}

.contact-row a:hover {
  color: var(--red);
}

.icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.35rem;
}

.form-row {
  display: grid;
  gap: 0.45rem;
}

.form-row label,
.privacy-check {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text);
}

.form-row label span,
.privacy-check strong {
  color: var(--red);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  font: inherit;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-row textarea {
  min-height: 132px;
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: rgba(210, 0, 0, 0.48);
  box-shadow: 0 0 0 4px rgba(210, 0, 0, 0.08);
}

.contact-hp {
  position: absolute;
  left: -9999px;
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  line-height: 1.45;
  color: #3a3a3a;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  margin-top: 0.12rem;
  accent-color: var(--red);
  flex-shrink: 0;
}

.turnstile-wrap {
  min-height: 0;
}

.form-status {
  min-height: 1.35rem;
  margin: -0.15rem 0 0;
  font-size: 0.86rem;
  color: var(--muted);
}

.form-status.success {
  color: #167a3a;
}

.form-status.error {
  color: var(--red-dark);
}

.contact-submit {
  width: 100%;
}

.contact-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

/* Footer */
.site-footer {
  background: var(--footer-bg);
  color: #e8e8e8;
  padding: 3.25rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.95fr 0.95fr 1.15fr;
  gap: 2.25rem 2rem;
  align-items: start;
  padding-bottom: 2.75rem;
}

.footer-brand {
  max-width: 26rem;
}

.footer-logo-img {
  display: block;
  height: auto;
  width: 100%;
  max-width: 285px;
  margin-bottom: 1.1rem;
}

.footer-lead {
  margin: 0 0 1.35rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.social-outline {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.88);
  background: transparent;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.social-outline:hover {
  border-color: var(--red);
  color: var(--red);
  text-decoration: none;
}

.footer-col h3,
.site-footer .footer-col h3 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  margin: 0 0 1.1rem;
}

.site-footer p,
.site-footer a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer .footer-links a {
  color: rgba(255, 255, 255, 0.78);
}

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

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.55rem;
}

.footer-links a {
  text-decoration: none;
}

.footer-contact-lines {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-lines li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.78);
}

.footer-contact-lines a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.footer-contact-lines a:hover {
  color: var(--white);
}

.footer-contact-ic {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.95);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.15rem 1.25rem 1.35rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-copy {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
}

.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--white);
}

.footer-legal-sep {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8rem;
  user-select: none;
}

/* Legal pages */
.legal-page {
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-bg) 100%);
  padding: 4rem 0;
}

.legal-wrap {
  max-width: 900px;
}

.legal-wrap h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  margin: 0 0 0.65rem;
}

.legal-updated {
  margin: 0 0 2.5rem;
  color: var(--muted);
}

.legal-wrap section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.04);
  padding: clamp(1.15rem, 2.5vw, 1.6rem);
  margin-bottom: 1rem;
}

.legal-wrap h2 {
  font-size: 1.1rem;
  margin: 0 0 0.65rem;
}

.legal-wrap p {
  margin: 0 0 0.85rem;
  color: #333;
}

.legal-wrap p:last-child {
  margin-bottom: 0;
}

.legal-back {
  margin-top: 1.25rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .trust-card {
    grid-template-columns: repeat(2, 1fr);
  }

  .cards-4 {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .about-photo,
  .about-photo img {
    min-height: 360px;
  }

  .strip-inner {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 720px) {
  .main-nav {
    width: 100%;
    order: 3;
    justify-content: flex-start;
  }

  .header-inner {
    padding: 0.75rem 1rem;
  }

  .trust-card {
    grid-template-columns: 1fr 1fr;
    margin-top: -2rem;
  }

  .cards-4 {
    grid-template-columns: 1fr;
  }

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

  .about {
    padding: 3rem 1rem;
  }

  .about-grid {
    border-radius: 18px;
    padding: 0.85rem;
  }

  .about-stats,
  .about-feature-grid {
    grid-template-columns: 1fr;
  }

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

  .kontakt-card-wrap {
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 2rem;
  }

  .ref-photos {
    grid-template-columns: 1fr;
  }

  .header-actions {
    margin-left: auto;
  }
}
