/* Hyde Park Exclusive — same Signature dark layout as MNHD */
:root {
  --ink: #0c1117;
  --surface: #151d28;
  --surface-2: #1e2936;
  --line: rgba(255, 255, 255, 0.08);
  --text: #eef2f6;
  --muted: #9fb0c3;
  --gold: #d4a853;
  --gold-dim: rgba(212, 168, 83, 0.15);
  --teal: #3ecfbe;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --font-ar: "Tajawal", "Segoe UI", sans-serif;
  --font-en: "DM Sans", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-ar);
  background: var(--ink);
  color: var(--text);
  line-height: 1.75;
  font-size: 1.05rem;
}

h1,
h2,
h3,
.section-label {
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.02em;
}

h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  margin: 0 0 0.75rem;
}

h3 {
  font-size: 1rem;
  margin: 0 0 0.35rem;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

a {
  color: var(--teal);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.wrap {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(72vh, 640px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1s ease, transform 8s linear;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(12, 17, 23, 0.92) 0%,
    rgba(12, 17, 23, 0.55) 45%,
    rgba(12, 17, 23, 0.75) 100%
  );
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 4rem 0 3.5rem;
}

.hero h1 {
  max-width: 18ch;
  font-size: clamp(1.75rem, 4.2vw, 2.65rem);
  margin: 0 0 1.25rem;
  border-inline-start: 4px solid var(--gold);
  padding-inline-start: 1.25rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-en);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.hero-badge span {
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

/* Sections */
.section {
  padding: 3.25rem 0;
}

.section--alt {
  background: linear-gradient(180deg, var(--surface) 0%, var(--ink) 100%);
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.section-label {
  font-family: var(--font-en);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  margin: 2rem 0;
}

/* Grid layouts */
.split {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 880px) {
  .split {
    grid-template-columns: 1fr 1.05fr;
  }
}

.card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.card-media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}

/* Project gates */
.gates {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 720px) {
  .gates {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 720px) {
  .gates.gates--3 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 960px) {
  .gates.gates--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gate {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.gate img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gate:hover img {
  transform: scale(1.04);
}
.gate a {
  display: block;
  color: inherit;
  text-decoration: none;
}
.gate figcaption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(transparent, rgba(12, 17, 23, 0.95));
  font-weight: 700;
}

/* Forms */
.reg {
  background: var(--gold-dim);
  border: 1px solid rgba(212, 168, 83, 0.35);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.reg h2 {
  color: var(--gold);
}

.reg-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 560px) {
  .reg-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.reg input,
.reg-grid input {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  font: inherit;
}
.reg input::placeholder,
.reg-grid input::placeholder {
  color: var(--muted);
}
.reg input:focus,
.reg-grid input:focus {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.reg button,
.reg-grid button {
  grid-column: 1 / -1;
  padding: 0.95rem 1.5rem;
  border: none;
  border-radius: 10px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  background: linear-gradient(135deg, var(--gold), #b8893a);
  color: #1a1206;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.reg button:hover,
.reg-grid button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(212, 168, 83, 0.35);
}

.cta-band .reg-grid {
  margin-top: 1.25rem;
  text-align: start;
}

/* Bento property types */
.bento {
  display: grid;
  gap: 1rem;
}
@media (min-width: 900px) {
  .bento {
    grid-template-columns: repeat(4, 1fr);
  }
}

.bento.bento--half {
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .bento.bento--half {
    grid-template-columns: repeat(2, 1fr);
  }
}

.bento-item {
  background: var(--surface-2);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.bento-item h3 {
  padding: 0.85rem 1rem 0;
  font-family: var(--font-en);
  font-size: 0.95rem;
  color: var(--gold);
}
.bento-item img {
  flex: 1;
  object-fit: cover;
  min-height: 140px;
}

/* Lists */
.tick-list p {
  margin: 0 0 0.5rem;
  padding-inline-start: 1rem;
  border-inline-start: 2px solid var(--teal);
}

/* Carousel strip */
.strip {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
}
.strip a {
  flex: 0 0 min(220px, 70vw);
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.strip img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

/* Icon row */
.pills {
  display: grid;
  gap: 1rem;
}
@media (min-width: 800px) {
  .pills {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pill {
  text-align: center;
  padding: 1.25rem 1rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
}
.pill strong {
  display: block;
  color: var(--text);
  font-size: 0.95rem;
}

/* CTA band */
.cta-band {
  text-align: center;
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: radial-gradient(ellipse at top, var(--gold-dim), transparent 60%),
    var(--surface-2);
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.9rem 1.75rem;
  border-radius: 999px;
  background: var(--teal);
  color: #04221e !important;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none !important;
  letter-spacing: 0.04em;
}
.cta-phone:hover {
  filter: brightness(1.08);
}

/* Footer */
.site-footer {
  padding: 1.75rem 1rem;
  text-align: center;
  font-family: var(--font-en);
  font-size: 0.82rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: var(--surface);
}

/* FAB call + WhatsApp */
.fab-cluster {
  position: fixed;
  z-index: 50;
  inset-inline-end: 1.1rem;
  bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-direction: row-reverse;
}

.fab-call,
.fab-wa {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.25);
  text-decoration: none;
}
.fab-call {
  background: linear-gradient(145deg, var(--teal), #238f84);
}
.fab-wa {
  background: linear-gradient(145deg, #2fe677, #128c7e);
}
.fab-call svg,
.fab-wa svg {
  display: block;
}
.fab-call:hover,
.fab-wa:hover {
  filter: brightness(1.1);
}

/* Utilities */
.text-center {
  text-align: center;
}
.mt-0 {
  margin-top: 0;
}
.mb-2 {
  margin-bottom: 2rem;
}
