/* ===========================================================
   DONMAH Cleaning LLP — brand tokens
   Navy + gold/cream lifted straight from the previous Wix site,
   paired with an Apple-style off-white/near-black neutral scale.
=========================================================== */
:root {
  --navy: #053052;
  --navy-deep: #021d33;
  --navy-soft: #0c4e80;
  --gold: #ece4a9;
  --gold-soft: #f5f0d2;
  --blue: #116dff;
  --ink: #1d1d1f;
  --ink-soft: #6e6e73;
  --off-white: #f5f5f7;
  --white: #ffffff;

  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ---------- Layout helpers ---------- */
.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.theme-dark {
  background: var(--navy);
  color: var(--white);
}
.theme-deep {
  background: var(--navy-deep);
  color: var(--white);
}
.theme-light {
  background: var(--off-white);
  color: var(--ink);
}
.theme-gold {
  background: var(--gold);
  color: var(--navy-deep);
}

/* ---------- Reveal-on-scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}
[data-reveal].in-view {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal="scale"] {
  transform: translateY(20px) scale(0.94);
}
[data-reveal="scale"].in-view {
  transform: translateY(0) scale(1);
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 64px;
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.nav.scrolled {
  background: rgba(5, 48, 82, 0.78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08);
}
.nav__inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__brand {
  display: flex;
  align-items: center;
}
.brand-logo {
  height: 38px;
  width: auto;
  display: block;
}
.nav__links {
  display: flex;
  gap: 30px;
}
.nav__links a {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--gold); }
.nav__cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav__call {
  font-size: 13px;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 7px 16px;
  border-radius: 999px;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.nav__call:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.6);
}
.nav__toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
  padding: 4px 8px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 50% 0%, var(--navy-soft) 0%, var(--navy) 45%, var(--navy-deep) 100%);
  color: var(--white);
  padding: 120px 24px 80px;
}
.hero__glow {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 70%;
  background: radial-gradient(closest-side, rgba(236,228,169,0.18), transparent 70%);
  pointer-events: none;
  will-change: transform;
}
.hero__eyebrow {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(40px, 7vw, 88px);
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  max-width: 15ch;
}
.hero p.lead {
  font-size: clamp(17px, 2vw, 22px);
  color: rgba(255,255,255,0.78);
  max-width: 46ch;
  margin: 0 auto 40px;
  line-height: 1.5;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 56px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s, box-shadow 0.25s;
}
.btn:active { transform: scale(0.97); }
.btn--primary {
  background: var(--blue);
  color: var(--white);
}
.btn--primary:hover { box-shadow: 0 10px 30px rgba(17,109,255,0.4); }
.btn--ghost {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn--ghost:hover { background: rgba(255,255,255,0.16); }
.btn--dark {
  background: var(--navy);
  color: var(--white);
}
.btn--dark:hover { box-shadow: 0 10px 30px rgba(5,48,82,0.35); }

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.hero__scroll svg {
  animation: bob 1.8s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(8px); opacity: 1; }
}

/* ---------- Trust strip ---------- */
.trust {
  background: var(--off-white);
  padding: 28px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.trust__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.trust__item {
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(5,48,82,0.12);
  padding: 9px 18px;
  border-radius: 999px;
  white-space: nowrap;
}

/* ---------- Section shell ---------- */
.section {
  padding: 140px 0;
  position: relative;
}
.section--tight { padding: 90px 0; }
.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.eyebrow {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
  font-weight: 600;
}
.theme-dark .eyebrow, .theme-deep .eyebrow { color: var(--gold); }
.section h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}
.section__head p {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.theme-dark .section__head p, .theme-deep .section__head p {
  color: rgba(255,255,255,0.7);
}

/* ---------- About (sticky story) ---------- */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.story__media {
  position: sticky;
  top: 96px;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}
.story__media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.story__text h2 { margin-bottom: 26px; }
.story__text p {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  margin-bottom: 22px;
}
.story__text p:last-child { margin-bottom: 0; }

/* ---------- Why choose us ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}
.feature {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 26px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(5,48,82,0.12);
}
.feature__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 20px;
}
.feature h3 {
  font-size: 18px;
  margin: 0 0 8px;
  font-weight: 600;
}
.feature p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}

/* ---------- Services (product-story panels) ---------- */
.service-panel {
  padding: 130px 0;
}
.service-panel__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.service-panel--reverse .service-panel__grid {
  grid-template-columns: 1.1fr 0.9fr;
}
.service-panel--reverse .service-panel__media { order: 2; }
.service-panel__num {
  font-size: 15px;
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 18px;
  font-weight: 600;
}
.theme-light .service-panel__num, .theme-gold .service-panel__num { color: var(--blue); }
.service-panel h2 { margin-bottom: 22px; }
.service-panel p {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.82;
  max-width: 46ch;
}
.service-panel__media {
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 30px 70px rgba(0,0,0,0.25);
}
.service-panel__media img {
  width: 100%; height: 100%; object-fit: cover;
}
.service-panel__media--icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-soft), var(--navy-deep));
  font-size: 90px;
}
.theme-light .service-panel__media--icon,
.theme-gold .service-panel__media--icon {
  background: linear-gradient(135deg, var(--white), var(--gold-soft));
  box-shadow: 0 30px 70px rgba(5,48,82,0.15);
}

/* ---------- Pricing ---------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.price-card {
  background: var(--white);
  border-radius: 22px;
  padding: 34px 30px;
  border: 1px solid rgba(0,0,0,0.06);
}
.price-card h3 {
  font-size: 20px;
  margin: 0 0 22px;
  font-weight: 600;
  color: var(--navy);
}
.price-card ul { display: flex; flex-direction: column; gap: 14px; }
.price-card li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 15px;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(0,0,0,0.1);
}
.price-card li:last-child { border-bottom: none; padding-bottom: 0; }
.price-card li span:first-child { color: var(--ink); }
.price-card li span:last-child {
  color: var(--navy);
  font-weight: 600;
  white-space: nowrap;
}
.price-note {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 18px;
}

.discount-banner {
  margin-top: 24px;
  background: var(--gold);
  border-radius: 22px;
  padding: 34px 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
}
.discount-banner h3 {
  font-size: 20px;
  margin: 0 0 8px;
  color: var(--navy-deep);
}
.discount-banner ul { display: flex; flex-direction: column; gap: 6px; }
.discount-banner li { font-size: 15px; color: var(--navy-deep); }

/* ---------- Contact ---------- */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.contact__info h2 { margin-bottom: 20px; }
.contact__info p { font-size: 18px; opacity: 0.8; line-height: 1.6; margin-bottom: 36px; }
.contact__detail {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.contact__detail:last-of-type { border-bottom: 1px solid rgba(255,255,255,0.14); }
.contact__detail .ic {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(236,228,169,0.14);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact__detail a, .contact__detail span.static {
  font-size: 16px;
  font-weight: 500;
}
.contact__detail a:hover { color: var(--gold); }

.form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 24px;
  padding: 36px;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field { margin-bottom: 18px; display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 13px; color: rgba(255,255,255,0.7); }
.field input, .field textarea, .field select {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--white);
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s, background 0.2s;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.4); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.12);
}
.field textarea { resize: vertical; min-height: 110px; }
.form .btn { width: 100%; }
.form__note { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 14px; text-align: center; }
.form__success {
  display: none;
  text-align: center;
  padding: 40px 10px;
}
.form__success h3 { margin: 0 0 10px; }
.form__success p { opacity: 0.75; margin: 0; }

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.6);
  padding: 64px 0 32px;
  font-size: 13px;
}
.footer__top {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 28px;
}
.footer__brand {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}
.brand-logo--footer {
  height: 42px;
}
.footer__cols {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}
.footer__col h4 {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a:hover { color: var(--gold); }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
}

/* ---------- Legal pages ---------- */
.legal {
  padding: 160px 0 100px;
  max-width: 760px;
  margin: 0 auto;
}
.legal h1 {
  font-size: clamp(32px, 5vw, 48px);
  color: var(--navy);
  margin-bottom: 8px;
}
.legal .updated { color: var(--ink-soft); font-size: 14px; margin-bottom: 48px; }
.legal h2 {
  font-size: 22px;
  color: var(--navy);
  margin: 40px 0 14px;
}
.legal p, .legal li { font-size: 16px; line-height: 1.75; color: #333; }
.legal ul { padding-left: 22px; list-style: disc; margin-bottom: 16px; }
.legal ul li { margin-bottom: 6px; }
.legal p { margin-bottom: 16px; }
.legal a.back {
  display: inline-block;
  margin-bottom: 40px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 500;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .story, .contact { grid-template-columns: 1fr; }
  .story__media { position: relative; top: 0; margin-bottom: 20px; aspect-ratio: 16/10; }
  .service-panel__grid,
  .service-panel--reverse .service-panel__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .service-panel--reverse .service-panel__media { order: 0; }
  .form__row { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav__links, .nav__call { display: none; }
  .nav__toggle { display: inline-flex; align-items:center; justify-content:center; }
  .section { padding: 90px 0; }
  .service-panel { padding: 80px 0; }
  .discount-banner { flex-direction: column; align-items: flex-start; }
}

/* nav mobile drawer */
.nav__drawer {
  position: fixed;
  inset: 64px 0 0 0;
  background: rgba(5,48,82,0.98);
  backdrop-filter: blur(20px);
  z-index: 90;
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
  gap: 4px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.nav__drawer.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.nav__drawer a {
  padding: 16px 4px;
  font-size: 20px;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav__drawer .nav__call {
  margin-top: 20px;
  text-align: center;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero__scroll svg { animation: none; }
}
