:root {
  --coral: #d64d5f;
  --coral-dark: #b83f50;
  --ice: #cfe9ed;
  --ink: #10242b;
  --muted: #64757b;
  --white: #ffffff;
  --line: rgba(255,255,255,.24);
  --shadow: 0 28px 90px rgba(0, 0, 0, .34);
}

* { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #0f2329;
}

.page-shell {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 48px clamp(18px, 5vw, 82px);
  overflow: hidden;
}

.bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/hero.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,25,31,.78) 0%, rgba(8,25,31,.58) 38%, rgba(8,25,31,.18) 74%, rgba(8,25,31,.12) 100%),
    linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.28));
}

.card {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  padding: clamp(26px, 5vw, 46px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.brand { display: flex; align-items: center; margin-bottom: 26px; }

.logo {
  width: clamp(92px, 18vw, 132px);
  height: clamp(92px, 18vw, 132px);
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 16px 40px rgba(214,77,95,.26);
  border: 5px solid rgba(255,255,255,.9);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral-dark);
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 13px;
}

h1 {
  margin: 0;
  font-size: clamp(34px, 6vw, 64px);
  line-height: .96;
  letter-spacing: -0.055em;
  color: var(--ink);
}

.lead {
  margin: 22px 0 28px;
  max-width: 54ch;
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.65;
  color: #3e535a;
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 22px;
}

.contact-item {
  display: flex;
  gap: 12px;
  align-items: center;
  min-width: 0;
  padding: 14px;
  text-decoration: none;
  color: var(--ink);
  border-radius: 18px;
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(16,36,43,.08);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.contact-item:hover {
  transform: translateY(-2px);
  border-color: rgba(214,77,95,.28);
  background: rgba(255,255,255,.92);
}

.icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--ice);
  color: var(--coral-dark);
  font-size: 20px;
}

.contact-item strong {
  display: block;
  font-size: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.contact-item small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-weight: 600;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover { transform: translateY(-2px); }

.primary {
  color: #fff;
  background: var(--coral);
  box-shadow: 0 16px 32px rgba(214,77,95,.28);
}

.primary:hover { background: var(--coral-dark); }

.secondary {
  color: var(--ink);
  background: #fff;
  box-shadow: 0 10px 24px rgba(16,36,43,.10);
}

.ghost {
  color: #fff;
  background: #1877f2;
  box-shadow: 0 12px 28px rgba(24,119,242,.22);
}

.location {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 760px) {
  .page-shell {
    align-items: flex-end;
    padding: 18px;
    min-height: 100svh;
  }

  .bg {
    background-position: 62% center;
  }

  .shade {
    background:
      linear-gradient(180deg, rgba(8,25,31,.10) 0%, rgba(8,25,31,.32) 42%, rgba(8,25,31,.78) 100%);
  }

  .card {
    width: 100%;
    padding: 24px;
    border-radius: 28px;
    background: rgba(255,255,255,.92);
  }

  .brand { justify-content: center; margin-bottom: 18px; }

  h1 { text-align: center; }
  .eyebrow { text-align: center; }
  .lead { text-align: center; margin: 18px auto 22px; }

  .contact-list { grid-template-columns: 1fr; }

  .actions { display: grid; grid-template-columns: 1fr; }
  .btn { width: 100%; }

  .location { text-align: center; }
}

@media (max-width: 420px) {
  .page-shell { padding: 12px; }
  .card { padding: 20px; border-radius: 24px; }
  .logo { width: 86px; height: 86px; }
  .contact-item { padding: 12px; }
  .contact-item strong { font-size: 14px; }
}
