* {
  box-sizing: border-box;
}

:root {
  --espresso: #17110d;
  --deep-brown: #26170f;
  --gold: #c9a45c;
  --soft-gold: #e0c789;
  --cream: #f7f0e4;
  --muted: #b9aa98;
}

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  background:
    radial-gradient(circle at 50% 42%, rgba(201, 164, 92, 0.10), transparent 32%),
    linear-gradient(135deg, #120d09 0%, #24160e 48%, #100b08 100%);
  color: var(--cream);
  font-family: "Montserrat", sans-serif;
}

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

.page-shell::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(201, 164, 92, 0.28);
  pointer-events: none;
  z-index: 3;
}

.page-shell::after {
  content: "";
  position: absolute;
  inset: 25px;
  border: 1px solid rgba(201, 164, 92, 0.08);
  pointer-events: none;
  z-index: 3;
}

.pattern {
  position: absolute;
  width: 480px;
  height: 480px;
  opacity: 0.12;
  z-index: -1;
  background-image:
    linear-gradient(45deg, transparent 46%, var(--gold) 47%, var(--gold) 53%, transparent 54%),
    linear-gradient(-45deg, transparent 46%, var(--gold) 47%, var(--gold) 53%, transparent 54%);
  background-size: 52px 52px;
  transform: rotate(22.5deg);
}

.pattern-left {
  left: -285px;
  top: 50%;
}

.pattern-right {
  right: -285px;
  top: 8%;
}

.site-header {
  width: min(1180px, calc(100% - 90px));
  margin: 0 auto;
  padding: 48px 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 5;
}

.brand {
  color: var(--cream);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  color: var(--gold);
  font-size: 25px;
  line-height: 1;
}

.brand strong,
.brand small {
  display: block;
  letter-spacing: 4px;
}

.brand strong {
  font-size: 15px;
  font-weight: 600;
}

.brand small {
  margin-top: 5px;
  color: var(--gold);
  font-size: 8px;
  letter-spacing: 5px;
}

.location {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 3px;
}

.hero {
  width: min(850px, calc(100% - 50px));
  margin: auto;
  text-align: center;
  padding: 55px 0 65px;
  position: relative;
  z-index: 2;
}

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  margin-bottom: 24px;
}

.ornament span {
  display: block;
  width: 70px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.ornament span:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.ornament b {
  color: var(--gold);
  font-size: 11px;
  transform: rotate(45deg);
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 5px;
}

h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(62px, 8.5vw, 104px);
  font-weight: 600;
  line-height: 0.82;
  letter-spacing: -2px;
}

h1 em {
  color: var(--soft-gold);
  font-weight: 500;
}

.intro {
  max-width: 610px;
  margin: 34px auto 17px;
  color: #c7bbae;
  font-size: 13px;
  line-height: 1.9;
  font-weight: 400;
}

.arabic {
  color: var(--gold);
  font-family: "Times New Roman", serif;
  font-size: 26px;
  margin-top: 12px;
}

.translation {
  color: #8f8173;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 16px;
  margin: 3px 0 27px;
}

.countdown-card {
  width: min(640px, 100%);
  margin: 0 auto 25px;
  padding: 19px 22px 21px;
  border-top: 1px solid rgba(201, 164, 92, 0.35);
  border-bottom: 1px solid rgba(201, 164, 92, 0.35);
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(5px);
}

.countdown-title {
  margin: 0 0 13px;
  color: #948475;
  font-size: 8px;
  letter-spacing: 4px;
  font-weight: 600;
}

.countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.countdown div {
  min-width: 75px;
}

.countdown span {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  color: var(--cream);
}

.countdown small {
  display: block;
  color: var(--gold);
  font-size: 7px;
  letter-spacing: 2px;
  margin-top: 2px;
}

.countdown i {
  color: var(--gold);
  font-style: normal;
  opacity: 0.5;
  margin-top: -13px;
}

.notify-form {
  width: min(570px, 100%);
  margin: 0 auto;
  display: flex;
  gap: 8px;
}

.notify-form input {
  flex: 1;
  min-width: 0;
  border: 1px solid rgba(201, 164, 92, 0.35);
  outline: none;
  padding: 15px 18px;
  background: rgba(0, 0, 0, 0.25);
  color: var(--cream);
  font: 11px "Montserrat", sans-serif;
  letter-spacing: 0.4px;
}

.notify-form input::placeholder {
  color: #76695d;
}

.notify-form input:focus {
  border-color: var(--gold);
}

.notify-form button {
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #21150e;
  padding: 0 20px;
  font: 600 9px "Montserrat", sans-serif;
  letter-spacing: 2px;
  cursor: pointer;
  transition: 0.25s ease;
}

.notify-form button:hover {
  background: var(--soft-gold);
  transform: translateY(-1px);
}

.notify-form button span {
  font-size: 15px;
  margin-left: 7px;
}

.form-message {
  min-height: 16px;
  margin: 10px 0 0;
  color: var(--gold);
  font-size: 9px;
  letter-spacing: 0.5px;
}

.follow {
  color: #776b60;
  font-size: 9px;
  letter-spacing: 1.5px;
  margin: 8px 0 0;
}

.site-footer {
  width: min(1180px, calc(100% - 90px));
  margin: auto auto 0;
  padding: 20px 0 40px;
  color: #66594e;
  font-size: 8px;
  letter-spacing: 2px;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 5;
}

.footer-dot {
  color: var(--gold);
}

@media (max-width: 650px) {
  .page-shell::before {
    inset: 10px;
  }

  .page-shell::after {
    inset: 16px;
  }

  .site-header {
    width: calc(100% - 50px);
    padding-top: 35px;
  }

  .location {
    display: none;
  }

  .hero {
    padding-top: 42px;
  }

  h1 {
    font-size: clamp(56px, 17vw, 78px);
  }

  .intro {
    font-size: 12px;
    line-height: 1.8;
  }

  .countdown {
    gap: 6px;
  }

  .countdown div {
    min-width: 57px;
  }

  .countdown span {
    font-size: 29px;
  }

  .countdown i {
    font-size: 12px;
  }

  .notify-form {
    flex-direction: column;
  }

  .notify-form input {
    height: 48px;
  }

  .notify-form button {
    height: 48px;
  }

  .site-footer {
    width: calc(100% - 50px);
    padding-bottom: 30px;
  }
}
