:root {
  color-scheme: light;
  --bg: #0e233c;
  --navy: #0e233c;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-solid: #ffffff;
  --ink: #18201d;
  --muted: #69716d;
  --line: rgba(24, 32, 29, 0.11);
  --accent: #146c5f;
  --accent-strong: #0f544a;
  --gold: #b9945a;
  --shadow: 0 24px 80px rgba(24, 32, 29, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: "Cairo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(185, 148, 90, 0.16), transparent 34rem),
    linear-gradient(135deg, var(--bg) 0%, #16314f 55%, #1a3c61 100%);
}

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

.page-shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
}

.contact-card {
  width: min(100%, 360px);
  aspect-ratio: 9 / 16;
  padding: 32px 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: linear-gradient(25deg, #112b48 0%, #0e233c 52%, #16385d 100%);
  box-shadow: 0 24px 80px rgba(3, 10, 20, 0.34);
  backdrop-filter: blur(22px);
}

.brand-header {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 12px;
  margin-bottom: 24px;
}

.logo-box {
  display: grid;
  width: 220px;
  min-height: 128px;
  place-items: center;
  padding: 8px;
}

.logo-image {
  display: block;
  width: 100%;
  max-width: 220px;
  height: auto;
  object-fit: contain;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.15;
  color: #f4f7fb;
}

.tagline {
  max-width: 560px;
  margin: 0;
  color: rgba(232, 240, 248, 0.8);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.8;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
}

.contact-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65%;
  margin-inline: auto;
  min-height: 37px;
  padding: 7px 16px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: transparent;
  color: var(--gold);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-button:hover,
.contact-button:focus-visible {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 12px 32px rgba(177, 145, 93, 0.18);
  transform: translateY(-2px);
  outline: none;
}

.contact-button:active {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 8px 22px rgba(177, 145, 93, 0.14);
}

.contact-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.contact-button strong {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
}

.inline-title-icon {
  display: inline-grid;
  place-items: center;
}

.inline-title-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.contact-button small {
  display: none;
  overflow-wrap: anywhere;
  color: var(--navy);
  font-size: 0.66rem;
  line-height: 1.35;
}

.qr-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(232, 240, 248, 0.8);
}

.qr-panel p {
  margin: 0;
  font-size: 0.7rem;
  line-height: 1.7;
}
