:root {
  --ink: #121413;
  --paper: #f2efe8;
  --gold: #b99b62;
  --muted: #a49f94;
  --soft-text: #d0ccc2;
  --border: rgba(185, 155, 98, 0.36);
  --focus: #f2efe8;
  --ui-font: Arial, Helvetica, sans-serif;
  --display-font: Georgia, "Times New Roman", serif;
  --arabic-font: Tahoma, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--ui-font);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  opacity: 0.42;
  pointer-events: none;
  background:
    radial-gradient(circle at 75% 8%, #333229 0, transparent 30%),
    linear-gradient(110deg, transparent 55%, rgba(185, 155, 98, 0.08));
}

.skip-link {
  position: fixed;
  inset-inline-start: 16px;
  top: 12px;
  z-index: 10;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--paper);
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-shell {
  position: relative;
  max-width: 1280px;
  min-height: 100vh;
  margin: auto;
  padding: 32px clamp(24px, 6vw, 80px) 26px;
  display: flex;
  flex-direction: column;
}

.topbar,
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  color: var(--paper);
  text-decoration: none;
  letter-spacing: 0.25em;
  font-size: 18px;
  font-weight: 600;
}

.language-switcher {
  min-height: 44px;
  border: 1px solid rgba(242, 239, 232, 0.35);
  color: var(--paper);
  background: transparent;
  padding: 10px 16px;
  cursor: pointer;
  font: 600 12px var(--ui-font);
  letter-spacing: 0.08em;
}

.hero {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 82px 0 68px;
}

.eyebrow,
.section-label,
.coming {
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  margin: 0 0 24px;
}

h1,
h2 {
  font-family: var(--display-font);
  font-weight: 600;
  margin: 0;
}

h1 {
  font-size: clamp(50px, 7vw, 102px);
  line-height: 0.93;
  letter-spacing: -0.035em;
}

.ornament {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 130px;
  margin: 34px 0;
  color: var(--gold);
}

.ornament span {
  flex: 1;
  height: 1px;
  background: currentColor;
}

.ornament i {
  width: 7px;
  height: 7px;
  transform: rotate(45deg);
  background: currentColor;
}

.intro {
  max-width: 550px;
  color: var(--soft-text);
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}

.coming {
  margin: 32px 0 0;
}

.contact-card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: clamp(35px, 7vw, 100px);
  padding: clamp(30px, 4vw, 58px);
  border: 1px solid var(--border);
  background: rgba(20, 22, 21, 0.74);
}

.section-label {
  margin-bottom: 15px;
}

.contact-copy h2 {
  font-size: clamp(35px, 4vw, 52px);
  line-height: 1;
}

.contact-copy p:last-child {
  color: #c4c0b7;
  line-height: 1.7;
  max-width: 390px;
}

.contact-card form {
  display: grid;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

label {
  display: grid;
  gap: 8px;
  color: #d7d3ca;
  font-size: 12px;
  letter-spacing: 0.03em;
}

input,
textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(242, 239, 232, 0.3);
  border-radius: 0;
  outline: 0;
  padding: 10px 0;
  color: var(--paper);
  background: transparent;
  font: 14px var(--ui-font);
  resize: vertical;
}

input:focus,
textarea:focus {
  border-bottom-color: var(--gold);
}

input::placeholder,
textarea::placeholder {
  color: #807d75;
  opacity: 1;
}

.submit-button {
  min-height: 46px;
  justify-self: start;
  border: 1px solid var(--gold);
  padding: 13px 20px;
  background: var(--gold);
  color: var(--ink);
  font: 600 12px var(--ui-font);
  letter-spacing: 0.08em;
  cursor: pointer;
}

.submit-button b {
  margin-inline-start: 28px;
  font-size: 16px;
}

.hidden-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.privacy-note {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

footer {
  margin-top: 28px;
  color: #918d84;
  font-size: 11px;
  letter-spacing: 0.08em;
}

html[lang="ar"] body,
html[lang="ar"] h1,
html[lang="ar"] h2,
html[lang="ar"] .language-switcher,
html[lang="ar"] .submit-button,
html[lang="ar"] input,
html[lang="ar"] textarea {
  font-family: var(--arabic-font);
}

html[lang="ar"] h1,
html[lang="ar"] h2 {
  font-weight: 600;
  letter-spacing: 0;
}

html[lang="ar"] .eyebrow,
html[lang="ar"] .section-label,
html[lang="ar"] .coming {
  letter-spacing: 0.08em;
}

html[lang="ar"] .brand {
  letter-spacing: 0.14em;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .skip-link {
    transition: none;
  }
}

@media (max-width: 720px) {
  .site-shell {
    padding: 22px 18px;
  }

  .hero {
    padding: 82px 0 55px;
  }

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

  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  footer {
    gap: 12px;
    flex-direction: column;
    align-items: flex-start;
  }
}
