/* ---------------------------------------------------------------
   Dr. Saher Asle — Coming Soon
   Brand: deep green #02231e + "Dull Brass" gold gradient
   --------------------------------------------------------------- */

@font-face {
  font-family: "Arimo";
  src: url("assets/fonts/Arimo-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Arimo";
  src: url("assets/fonts/Arimo-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Arimo";
  src: url("assets/fonts/Arimo-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Arimo";
  src: url("assets/fonts/Arimo-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --green: #02231e;
  --cream: #fffff9;
  --gold-1: #ebc17d;
  --gold-2: #dfb77c;
  --gold-3: #c08329;
  --gold-ink: #d3a256;

  /* brand gold — three-stop ramp, spacing kept proportional to the source art */
  --brass: linear-gradient(
    180deg,
    var(--gold-1) 0%,
    var(--gold-2) 32%,
    var(--gold-3) 100%
  );

  --gutter: clamp(20px, 5vw, 72px);
  --marquee-duration: 26s;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  min-height: 100vh;
  background-color: var(--green);
  color: var(--cream);
  font-family: "Arimo", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* ---------------------------------------------------------------
   Page shell
   --------------------------------------------------------------- */

.page {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100svh;
  isolation: isolate;
}

/* soft warm glow behind the brand mark */
.page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 45% at 50% 26%, rgba(235, 193, 125, 0.10), transparent 70%),
    radial-gradient(90% 60% at 50% 100%, rgba(192, 131, 41, 0.06), transparent 72%);
  pointer-events: none;
}

/* ---------------------------------------------------------------
   Brand stage
   --------------------------------------------------------------- */

.stage {
  flex: 1.35 1 auto;
  display: grid;
  place-items: center;
  padding: clamp(40px, 8vh, 96px) var(--gutter) clamp(28px, 5vh, 64px);
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(14px, 2.2vw, 26px);
  text-align: center;
}

.brand__logo {
  width: clamp(118px, 14.5vw, 190px);
  height: auto;
  animation: rise 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.brand__name {
  width: clamp(228px, 27vw, 352px);
  height: auto;
  animation: rise 900ms cubic-bezier(0.22, 1, 0.36, 1) 140ms both;
}

/* ---------------------------------------------------------------
   Coming Soon band
   --------------------------------------------------------------- */

.band {
  flex: 0 0 auto;
  position: relative;
  overflow: hidden;
  background: var(--brass);
  padding-block: clamp(9px, 1.5vh, 18px);
  box-shadow:
    0 -14px 40px -26px rgba(235, 193, 125, 0.5),
    0 16px 40px -26px rgba(235, 193, 125, 0.5);
  animation: band-in 1s cubic-bezier(0.22, 1, 0.36, 1) 260ms both;
}

.band__track {
  display: flex;
  width: max-content;
  animation: marquee var(--marquee-duration) linear infinite;
}

.band__group {
  display: flex;
  flex: 0 0 auto;
}

.band__item {
  display: block;
  flex: 0 0 auto;
  padding-inline: clamp(20px, 3.4vw, 56px);
  color: var(--green);
  font-size: clamp(19px, 3vw, 42px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.28;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ---------------------------------------------------------------
   Contacts
   --------------------------------------------------------------- */

.contacts {
  flex: 1 1 auto;
  display: grid;
  place-items: center;
  padding: clamp(36px, 7vh, 88px) var(--gutter) calc(clamp(28px, 5vh, 72px) + env(safe-area-inset-bottom));
  animation: rise 900ms cubic-bezier(0.22, 1, 0.36, 1) 420ms both;
}

.contacts__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 44px);
  align-items: start;
  width: 100%;
  max-width: 1240px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(4px, 0.6vw, 9px);
  text-align: center;
  min-width: 0;
}

.contact__label {
  color: var(--gold-ink);
  font-size: clamp(11px, 1.05vw, 15px);
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact__value {
  max-width: 100%;
  color: var(--cream);
  font-size: clamp(15px, 1.55vw, 23px);
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 1.35;
  text-decoration: none;
  overflow-wrap: anywhere;
  transition: color 200ms ease, opacity 200ms ease;
}

.contact__value:hover,
.contact__value:focus-visible {
  color: var(--gold-1);
}

.contact__value:focus-visible {
  outline: 2px solid var(--gold-1);
  outline-offset: 4px;
  border-radius: 3px;
}

/* ---------------------------------------------------------------
   Motion
   --------------------------------------------------------------- */

@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

@keyframes rise {
  from { opacity: 0; transform: translate3d(0, 18px, 0); }
  to   { opacity: 1; transform: none; }
}

@keyframes band-in {
  from { opacity: 0; transform: scaleY(0.55); }
  to   { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .band__track { animation: none; }
  .brand__logo,
  .brand__name,
  .band,
  .contacts { animation: none; }
}

/* ---------------------------------------------------------------
   Narrow screens
   --------------------------------------------------------------- */

@media (max-width: 720px) {
  :root { --marquee-duration: 16s; }

  .stage { flex: 1.25 1 auto; }

  .band__item {
    font-size: clamp(17px, 5.2vw, 26px);
    padding-inline: clamp(16px, 6vw, 30px);
  }

  .contacts__list {
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(20px, 5vw, 30px);
    max-width: 420px;
  }

  .contact__label { font-size: 11.5px; }
  .contact__value { font-size: clamp(16px, 4.6vw, 20px); }
}

/* not enough room for four across, but too wide for a single stack */
@media (max-width: 900px) and (min-width: 721px) {
  .contacts__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(20px, 3.5vw, 34px);
    max-width: 620px;
  }
}

/* short, wide viewports (landscape phones) */
@media (max-height: 520px) and (orientation: landscape) {
  .stage { padding-block: clamp(20px, 5vh, 36px) clamp(16px, 4vh, 28px); }
  .contacts { padding-block: clamp(20px, 5vh, 34px) clamp(18px, 4vh, 28px); }
  .brand__logo { width: clamp(86px, 10.5vw, 136px); }
  .brand__name { width: clamp(180px, 22vw, 280px); }
  .contacts__list { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(14px, 2.5vw, 28px); max-width: 940px; }
  /* keep the e-mail on one line rather than breaking it mid-word */
  .contact__label { font-size: clamp(9.5px, 1.2vw, 12px); }
  .contact__value { font-size: clamp(12px, 1.7vw, 15px); }
}
