/*
Theme Name: Ridley's Maintenance
Theme URI: https://ridleys.ao
Author: Ridley's Angola
Description: Página temporária de manutenção da Ridley's Angola.
Version: 1.1.0
Text Domain: ridleys-maintenance
*/

:root {
  --navy: #17315c;
  --petrol: #14576e;
  --teal: #1d8a8a;
  --ice: #f4f6f6;
  --white: #ffffff;
  --ink: #18394b;
  --muted: #5d7480;
}

* { box-sizing: border-box; }
html { min-height: 100%; background: var(--ice); }
body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 14%, rgba(29,138,138,.13), transparent 30%),
    radial-gradient(circle at 86% 84%, rgba(23,49,92,.10), transparent 34%),
    linear-gradient(140deg, #f9fbfb 0%, #edf5f4 52%, #e8f0f3 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.site-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 58px);
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: absolute;
  border: 2px solid rgba(20,87,110,.14);
  border-radius: 999px;
  pointer-events: none;
}
.site-shell::before { width: 520px; height: 520px; top: -350px; right: -165px; }
.site-shell::after { width: 410px; height: 410px; bottom: -300px; left: -135px; border-color: rgba(29,138,138,.18); }

.frame {
  position: relative;
  width: min(1080px, 100%);
  min-height: min(720px, calc(100vh - 36px));
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: clamp(26px, 4.5vw, 58px);
  border: 1px solid rgba(20,87,110,.20);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,.92), rgba(244,248,248,.78));
  box-shadow: 0 30px 90px rgba(23,49,92,.13), inset 0 1px rgba(255,255,255,.9);
  backdrop-filter: blur(14px);
}

.brand { display: flex; align-items: flex-start; }
.brand-logo {
  display: block;
  width: clamp(142px, 15vw, 182px);
  height: auto;
  object-fit: contain;
}

.hero {
  align-self: center;
  max-width: 800px;
  padding: clamp(34px, 6vh, 74px) 0 clamp(46px, 7vh, 82px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 24px;
  color: var(--teal);
  font-size: .77rem;
  font-weight: 750;
  letter-spacing: .19em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 38px;
  height: 2px;
  background: linear-gradient(90deg, var(--navy), var(--teal));
}

h1 {
  max-width: 790px;
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.9rem, 7vw, 6.5rem);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.intro {
  max-width: 620px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.75;
}

.progress {
  width: min(340px, 100%);
  height: 3px;
  margin-top: 36px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(20,87,110,.12);
}
.progress span {
  display: block;
  width: 62%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--navy), var(--petrol), var(--teal));
  animation: breathe 3.2s ease-in-out infinite;
  transform-origin: left;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(20,87,110,.15);
  color: rgba(20,87,110,.72);
  font-size: .78rem;
  font-weight: 650;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@keyframes breathe { 0%,100% { opacity:.58; transform:scaleX(.72); } 50% { opacity:1; transform:scaleX(1); } }
@media (prefers-reduced-motion: reduce) { .progress span { animation: none; } }
@media (max-width: 620px) {
  .site-shell { padding: 12px; }
  .frame {
    min-height: calc(100vh - 24px);
    padding: 24px 26px;
    border-radius: 20px;
  }
  .brand-logo { width: 138px; }
  .hero { padding: 35px 0 48px; }
  .intro { margin-top: 24px; line-height: 1.65; }
  .footer { flex-direction: column; gap: 12px; }
}
