:root {
  --ink: #1b3144;
  --muted: #61717b;
  --paper: #f6f1e8;
  --white: #ffffff;
  --line: #d8c7aa;
  --brand-blue: #073d75;
  --brand-blue-dark: #052d57;
  --brand-gold: #b89152;
  --brand-ink-blue: #102b42;
  --shadow: 0 24px 70px rgba(16, 43, 66, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding: 24px clamp(18px, 7vw, 96px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0));
  transition: padding 220ms ease, background 220ms ease, backdrop-filter 220ms ease;
}

body.is-scrolled .site-header {
  align-items: center;
  padding-top: 14px;
  padding-bottom: 14px;
  background: linear-gradient(180deg, rgba(16, 43, 66, 0.94), rgba(16, 43, 66, 0.78));
  backdrop-filter: blur(12px);
}

.gallery-page .site-header,
.error-page .site-header {
  align-items: center;
  padding-top: 14px;
  padding-bottom: 14px;
  background: linear-gradient(180deg, rgba(16, 43, 66, 0.96), rgba(16, 43, 66, 0.82));
  backdrop-filter: blur(12px);
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  min-width: 0;
  transition: gap 220ms ease;
}

.brand-logo {
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  transition: opacity 180ms ease, transform 220ms ease, width 220ms ease, height 220ms ease;
}

.brand-logo picture,
.brand-logo img {
  display: block;
  width: 100%;
  height: 100%;
}

.brand-logo img {
  object-fit: contain;
}

.brand-logo-full {
  width: clamp(192px, 18vw, 252px);
  height: clamp(230px, 21.6vw, 302px);
  padding: 12px;
  background: var(--white);
}

.brand-logo-compact {
  position: absolute;
  width: 112px;
  height: 112px;
  padding: 9px;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.88);
}

body.is-scrolled .brand-logo-full {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.88);
}

.gallery-page .brand-logo-full,
.error-page .brand-logo-full {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.88);
}

body.is-scrolled .brand-logo-compact {
  position: static;
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.gallery-page .brand-logo-compact,
.error-page .brand-logo-compact {
  position: static;
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

body.is-scrolled .brand {
  gap: 16px;
}

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

.brand-copy {
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  transform: translateX(-8px);
  transition: opacity 180ms ease, max-width 220ms ease, transform 220ms ease;
  white-space: nowrap;
}

body.is-scrolled .brand-copy {
  opacity: 1;
  max-width: 260px;
  transform: translateX(0);
}

.gallery-page .brand-copy,
.error-page .brand-copy {
  opacity: 1;
  max-width: 260px;
  transform: translateX(0);
}

.brand strong {
  font-size: 17px;
  line-height: 1.1;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

.nav {
  display: flex;
  gap: 20px;
  font-size: 14px;
}

.nav a {
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
}

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

.menu-toggle {
  display: none;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  color: var(--white);
  background: rgba(16, 43, 66, 0.48);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  grid-area: 1 / 1;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-7px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(7px);
}

body.is-menu-open .menu-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

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

body.is-menu-open .menu-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--brand-ink-blue);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 45, 87, 0.9) 0%, rgba(7, 61, 117, 0.62) 45%, rgba(184, 145, 82, 0.14) 100%),
    linear-gradient(0deg, rgba(16, 43, 66, 0.78) 0%, rgba(16, 43, 66, 0) 42%);
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 36px));
  margin: 0 0 clamp(40px, 8vw, 90px) clamp(18px, 7vw, 96px);
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--brand-gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.96;
  letter-spacing: 0;
  max-width: 820px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(31px, 4vw, 54px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.15;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions,
.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: var(--brand-gold);
  color: var(--brand-ink-blue);
}

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

.button.outline {
  border-color: rgba(255, 255, 255, 0.48);
  color: var(--white);
}

.button.dark {
  border-color: var(--line);
  color: var(--ink);
  background: #fffaf0;
}

.section,
.feature-section,
.support-section,
.contact-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(70px, 9vw, 120px) 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
}

.intro p:last-child {
  color: var(--muted);
  font-size: clamp(19px, 2vw, 24px);
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats-band div {
  min-height: 130px;
  padding: 30px;
  border-right: 1px solid var(--line);
}

.stats-band div:last-child {
  border-right: 0;
}

.stats-band strong,
.stats-band span {
  display: block;
}

.stats-band strong {
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.12;
}

.stats-band span {
  color: var(--muted);
}

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

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(184, 145, 82, 0.16);
}

.work-item {
  min-height: 290px;
  padding: 18px 18px 28px;
  background: var(--white);
}

.work-item p {
  color: var(--muted);
}

.work-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  margin-bottom: 24px;
  overflow: hidden;
  border: 1px solid rgba(184, 145, 82, 0.28);
  border-radius: 14px;
  background: var(--paper);
}

.work-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.icon {
  position: absolute;
  top: 14px;
  left: 14px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  color: var(--brand-ink-blue);
  background: rgba(184, 145, 82, 0.92);
  box-shadow: 0 12px 24px rgba(16, 43, 66, 0.14);
  font-weight: 900;
}

.feature-section {
  display: grid;
  grid-template-columns: minmax(290px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 7vw, 90px);
  align-items: start;
}

.feature-copy p:last-child {
  margin-top: 24px;
  color: var(--muted);
  font-size: 18px;
}

.process {
  display: grid;
  gap: 14px;
}

.process div {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.process span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  background: var(--brand-blue);
  color: var(--white);
  font-weight: 900;
}

.process p {
  margin: 0;
  font-size: 18px;
}

.gallery-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 38px;
}

.gallery-heading h2 {
  max-width: 760px;
}

.home-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 14px;
}

.home-gallery-item,
.gallery-photo {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 18px;
  background: var(--brand-ink-blue);
  box-shadow: 0 18px 44px rgba(16, 43, 66, 0.16);
}

.home-gallery-item::after,
.gallery-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(16, 43, 66, 0.28));
  opacity: 0;
  transition: opacity 180ms ease;
}

.home-gallery-item:hover::after,
.gallery-photo:hover::after {
  opacity: 1;
}

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

.home-gallery-item:hover img,
.gallery-photo:hover img {
  transform: scale(1.045);
}

.home-gallery-item.is-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-hero {
  padding: 190px clamp(18px, 7vw, 96px) clamp(54px, 8vw, 92px);
  color: var(--white);
  background:
    radial-gradient(circle at 82% 20%, rgba(184, 145, 82, 0.24), transparent 34%),
    linear-gradient(135deg, var(--brand-blue-dark), var(--brand-ink-blue));
}

.gallery-hero-content {
  max-width: 840px;
}

.gallery-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(44px, 6vw, 82px);
}

.gallery-hero p:last-child {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 2vw, 22px);
}

.gallery-page-main {
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) 0;
}

.gallery-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.gallery-toolbar p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.gallery-grid {
  columns: 4 230px;
  column-gap: 16px;
}

.gallery-photo {
  width: 100%;
  margin: 0 0 16px;
  border: 0;
  padding: 0;
  cursor: zoom-in;
  break-inside: avoid;
}

.gallery-photo img {
  height: auto;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(5, 15, 25, 0.88);
  backdrop-filter: blur(10px);
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  max-width: min(1120px, 92vw);
  max-height: 84vh;
  border-radius: 18px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: var(--white);
  background: rgba(16, 43, 66, 0.72);
  cursor: pointer;
}

.lightbox-close {
  top: 22px;
  right: 22px;
  font-size: 28px;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  font-size: 30px;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 22px;
}

.lightbox-next {
  right: 22px;
}

.error-main {
  min-height: calc(100vh - 86px);
  display: grid;
  place-items: center;
  padding: 170px 18px 80px;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 22%, rgba(184, 145, 82, 0.22), transparent 30%),
    radial-gradient(circle at 86% 72%, rgba(216, 192, 143, 0.14), transparent 34%),
    linear-gradient(135deg, var(--brand-blue-dark), var(--brand-ink-blue));
}

.error-card {
  width: min(820px, 100%);
  padding: clamp(30px, 6vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(10px);
}

.error-code {
  margin: 0 0 18px;
  color: rgba(184, 145, 82, 0.72);
  font-size: clamp(82px, 14vw, 150px);
  font-weight: 900;
  line-height: 0.82;
}

.error-card h1 {
  margin-bottom: 20px;
  font-size: clamp(38px, 5vw, 68px);
}

.error-card > p:not(.section-kicker):not(.error-code) {
  max-width: 640px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
}

.support-section {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(280px, 820px) auto;
  gap: 28px;
  align-items: end;
  padding-inline: clamp(18px, 7vw, 96px);
  background:
    radial-gradient(circle at 84% 18%, rgba(216, 192, 143, 0.18), transparent 34%),
    linear-gradient(135deg, var(--brand-blue-dark), var(--brand-ink-blue));
  color: var(--white);
}

.support-copy p:last-child {
  max-width: 720px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.documents {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(280px, 0.74fr);
  gap: clamp(28px, 7vw, 90px);
  align-items: center;
}

.doc-copy p {
  color: var(--muted);
  font-size: 18px;
}

.document-preview {
  display: block;
  max-width: 430px;
  justify-self: end;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.document-preview img {
  display: block;
  width: 100%;
  height: auto;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(360px, 1.18fr);
  gap: clamp(28px, 7vw, 90px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.contact-copy {
  position: sticky;
  top: 130px;
}

.contact-copy p:last-child {
  max-width: 410px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 18px;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-methods a {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border: 1px solid rgba(184, 145, 82, 0.24);
  border-radius: 16px;
  color: var(--brand-ink-blue);
  background: rgba(255, 255, 255, 0.56);
  font-size: 18px;
  font-weight: 800;
  overflow-wrap: anywhere;
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.contact-methods a:hover {
  border-color: rgba(184, 145, 82, 0.58);
  background: var(--white);
  transform: translateY(-1px);
}

.contact-methods span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-panel {
  display: grid;
  gap: 22px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(216, 192, 143, 0.24);
  border-radius: 26px;
  color: var(--white);
  background:
    radial-gradient(circle at 92% 8%, rgba(184, 145, 82, 0.24), transparent 34%),
    linear-gradient(135deg, var(--brand-blue-dark), var(--brand-ink-blue));
  box-shadow: var(--shadow);
}

.contact-panel p,
.contact-panel h3,
.contact-panel dl,
.contact-panel dd {
  margin: 0;
}

.contact-card {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.contact-card h3 {
  margin-bottom: 16px;
  color: var(--white);
}

.details-list {
  display: grid;
  gap: 13px;
}

.details-list div {
  display: grid;
  grid-template-columns: minmax(130px, 0.42fr) 1fr;
  gap: 14px;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.details-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.details-list dt,
.bank-note {
  color: rgba(255, 255, 255, 0.68);
}

.details-list dt {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.details-list dd {
  color: var(--white);
  font-weight: 700;
}

.bank-note {
  font-size: 16px;
}

.bank-grid {
  display: grid;
  gap: 12px;
  margin: 16px 0;
}

.bank-account {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.bank-account strong {
  display: block;
  margin-bottom: 5px;
  color: var(--brand-gold);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.bank-account span {
  display: block;
  overflow-wrap: anywhere;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.copy-iban {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: var(--brand-ink-blue);
  background: var(--brand-gold);
  font-weight: 900;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.copy-iban:hover {
  background: #d0ad70;
  transform: translateY(-1px);
}

.copy-iban.is-copied {
  background: var(--white);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--brand-ink-blue);
}

.footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .site-header {
    position: fixed;
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
    flex: 0 0 auto;
  }

  .mobile-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: clamp(18px, 7vw, 96px);
    display: grid;
    min-width: min(260px, calc(100vw - 36px));
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    background: rgba(16, 43, 66, 0.94);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(12px);
  }

  .mobile-nav[hidden] {
    display: none;
  }

  .mobile-nav a {
    padding: 13px 14px;
    border-radius: 10px;
    color: var(--white);
    font-weight: 800;
    text-decoration: none;
  }

  .mobile-nav a:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .hero {
    min-height: 820px;
  }

  .intro,
  .feature-section,
  .support-section,
  .documents,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .stats-band,
  .work-grid {
    grid-template-columns: 1fr;
  }

  .gallery-heading,
  .gallery-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .gallery-hero {
    padding-top: 150px;
  }

  .stats-band div,
  .stats-band div:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stats-band div:last-child {
    border-bottom: 0;
  }

  .work-item {
    min-height: 230px;
  }

  .document-preview {
    justify-self: start;
    width: min(100%, 430px);
  }

  .contact-copy {
    position: static;
  }

  .footer {
    display: block;
  }

  .footer p + p {
    margin-top: 6px;
  }
}

@media (max-width: 520px) {
  .brand {
    gap: 12px;
  }

  .brand-logo-full {
    width: 124px;
    height: 149px;
    padding: 8px;
  }

  .brand-logo-compact {
    width: 82px;
    height: 82px;
    padding: 6px;
  }

  body.is-scrolled .site-header {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 820px;
  }

  .button {
    width: 100%;
  }

  .hero-actions,
  .support-actions {
    width: 100%;
  }

  .home-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .home-gallery-item.is-large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-grid {
    columns: 1;
  }

  .lightbox-prev,
  .lightbox-next {
    top: auto;
    bottom: 18px;
    transform: none;
  }

  .work-item,
  .contact-panel {
    padding: 22px;
  }

  .details-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .bank-account {
    align-items: stretch;
    flex-direction: column;
  }

  .copy-iban {
    width: 100%;
  }
}
