:root {
  --burgundy: #760d21;
  --burgundy-deep: #3b0711;
  --cream: #f7f3ee;
  --silver: #bcb8b3;
  --ink: #191619;
  --muted: #6e6867;
  --border: rgba(118, 13, 33, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: var(--cream);
  font-family: "Cairo", Arial, sans-serif;
}

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

.coming-soon {
  position: relative;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
}

.background {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.background-image {
  position: absolute;
  inset: 0 44% 0 0;
  background: url("assets/legal-banner.jpeg") center / cover no-repeat;
  filter: saturate(0.75) contrast(1.05);
  transform: scale(1.04);
}

.background-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(40, 7, 13, 0.55) 0%, rgba(63, 9, 18, 0.78) 30%, rgba(247, 243, 238, 0.96) 55%, #f7f3ee 76%),
    linear-gradient(0deg, rgba(20, 2, 6, 0.2), transparent 50%);
}

.glow {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(118, 13, 33, 0.08);
  filter: blur(80px);
}

.glow-one {
  top: -130px;
  right: 13%;
}

.glow-two {
  right: 38%;
  bottom: -190px;
}

.topbar {
  display: flex;
  width: min(1380px, calc(100% - 80px));
  margin: 0 auto;
  padding: 24px 0;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(118, 13, 33, 0.13);
}

.brand {
  display: block;
  width: 142px;
  height: 72px;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.top-contact {
  display: flex;
  direction: ltr;
  gap: 10px;
  align-items: center;
  color: var(--burgundy);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.contact-icon {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
}

.contact-icon svg {
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.hero {
  display: grid;
  width: min(1380px, calc(100% - 80px));
  margin: auto;
  padding: 58px 0 48px;
  grid-template-columns: minmax(390px, 0.75fr) minmax(440px, 1fr);
  gap: clamp(70px, 8vw, 150px);
  align-items: center;
}

.hero-copy {
  grid-column: 2;
  max-width: 690px;
}

.eyebrow {
  display: flex;
  direction: ltr;
  gap: 13px;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 20px;
  color: var(--burgundy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.6px;
}

.eyebrow span {
  width: 42px;
  height: 1px;
  background: var(--burgundy);
}

h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(54px, 5.7vw, 92px);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -2px;
}

h1 strong {
  color: var(--burgundy);
  font-weight: 800;
}

.intro {
  max-width: 610px;
  margin: 24px 0 30px;
  color: var(--muted);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 2;
}

.countdown {
  display: flex;
  direction: ltr;
  width: fit-content;
  padding: 18px 24px;
  align-items: flex-start;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 18px 60px rgba(55, 6, 15, 0.07);
  backdrop-filter: blur(12px);
}

.time-unit {
  display: flex;
  min-width: 68px;
  flex-direction: column;
  align-items: center;
}

.time-value {
  color: var(--burgundy-deep);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 3vw, 48px);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.time-label {
  margin-top: 7px;
  color: #8d8583;
  font-size: 10px;
  font-weight: 600;
}

.separator {
  margin-top: -2px;
  color: rgba(118, 13, 33, 0.28);
  font-family: Georgia, serif;
  font-size: 36px;
  line-height: 1;
}

.actions {
  display: flex;
  gap: 12px;
  margin-top: 26px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 0 24px;
  gap: 10px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: #fff;
  background: var(--burgundy);
  box-shadow: 0 12px 28px rgba(118, 13, 33, 0.22);
}

.button-primary:hover {
  background: #8b1027;
  box-shadow: 0 16px 34px rgba(118, 13, 33, 0.29);
}

.button-primary svg {
  width: 18px;
  fill: currentColor;
}

.button-secondary {
  direction: ltr;
  border: 1px solid var(--border);
  color: var(--burgundy);
  background: rgba(255, 255, 255, 0.5);
}

.contact-card {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  max-width: 520px;
  padding: clamp(28px, 3vw, 46px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 14px;
  color: white;
  background: linear-gradient(145deg, rgba(79, 8, 21, 0.93), rgba(35, 5, 11, 0.97));
  box-shadow: 0 35px 85px rgba(45, 4, 12, 0.26);
}

.contact-card::before {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  content: "";
  pointer-events: none;
}

.card-mark {
  position: absolute;
  top: -74px;
  left: -10px;
  color: rgba(255, 255, 255, 0.035);
  font-family: "Playfair Display", serif;
  font-size: 300px;
  font-weight: 700;
  line-height: 1;
}

.card-heading {
  position: relative;
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.card-heading span {
  color: #caaeb4;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 4px;
}

.card-heading h2 {
  margin: 6px 0 0;
  font-size: 25px;
  font-weight: 700;
}

.contact-row {
  position: relative;
  display: flex;
  gap: 16px;
  padding: 14px 0;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.contact-row:last-child {
  border-bottom: 0;
}

.row-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: #dfbcc3;
}

.row-icon svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.contact-row > span:last-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.contact-row small {
  margin-bottom: 4px;
  color: #caaeb4;
  font-size: 10px;
}

.contact-row b {
  overflow-wrap: anywhere;
  font-size: clamp(11px, 0.9vw, 13px);
  font-weight: 500;
  letter-spacing: 0.1px;
}

footer {
  display: flex;
  width: min(1380px, calc(100% - 80px));
  margin: 0 auto;
  padding: 18px 0 24px;
  direction: ltr;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(118, 13, 33, 0.12);
  color: #7a7270;
  font-size: 11px;
}

footer p {
  margin: 0;
}

footer p:first-child {
  color: var(--burgundy);
  font-weight: 700;
  letter-spacing: 0.6px;
}

footer p:first-child span {
  color: #9b9793;
}

.copyright {
  direction: ltr;
}

@media (max-width: 1050px) {
  .background-image {
    inset: 0;
  }

  .background-overlay {
    background: linear-gradient(90deg, rgba(247, 243, 238, 0.99) 0%, rgba(247, 243, 238, 0.94) 60%, rgba(59, 7, 17, 0.72) 100%);
  }

  .hero {
    grid-template-columns: 0.78fr 1fr;
    gap: 36px;
  }

  h1 {
    font-size: clamp(54px, 8vw, 82px);
  }
}

@media (max-width: 800px) {
  .topbar,
  .hero,
  footer {
    width: min(100% - 40px, 620px);
  }

  .topbar {
    padding: 18px 0;
  }

  .brand {
    width: 110px;
    height: 56px;
  }

  .hero {
    display: flex;
    margin: 0 auto;
    padding: 54px 0 42px;
    flex-direction: column;
    align-items: stretch;
  }

  .background-image {
    inset: 0 0 54% 0;
  }

  .background-overlay {
    background:
      linear-gradient(0deg, #f7f3ee 42%, rgba(247, 243, 238, 0.88) 74%, rgba(59, 7, 17, 0.48) 100%),
      linear-gradient(90deg, rgba(247, 243, 238, 0.88), rgba(247, 243, 238, 0.4));
  }

  .eyebrow {
    justify-content: flex-start;
  }

  .hero-copy {
    max-width: none;
  }

  .intro {
    max-width: 580px;
  }

  .contact-card {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 520px) {
  .topbar,
  .hero,
  footer {
    width: calc(100% - 30px);
  }

  .top-contact {
    font-size: 11px;
  }

  .contact-icon {
    width: 30px;
    height: 30px;
  }

  .hero {
    padding-top: 38px;
  }

  .eyebrow {
    font-size: 9px;
    letter-spacing: 1.5px;
  }

  h1 {
    font-size: 52px;
    letter-spacing: -2px;
  }

  .intro {
    margin-top: 20px;
    font-size: 14px;
  }

  .countdown {
    width: 100%;
    padding: 16px 10px;
    justify-content: center;
  }

  .time-unit {
    min-width: 54px;
  }

  .time-value {
    font-size: 32px;
  }

  .separator {
    font-size: 28px;
  }

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

  .button {
    width: 100%;
  }

  .contact-card {
    padding: 26px 22px;
  }

  .contact-row {
    gap: 12px;
  }

  footer {
    gap: 6px;
    flex-direction: column;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
