/* URM Company — Under Construction landing */

:root {
  --navy: #305470;
  --navy-dark: #16293a;
  --navy-darker: #0f1e2b;
  --gray: #8a97a3;
  --gold: #d3a052;
  --gold-soft: #e7c684;
  --cream: #f7f4ee;
  --paper: #fbfaf7;
  --ink: #1a2833;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Jost", "Segoe UI", 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-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

/* ---------- Topbar ---------- */

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  padding: 1.1rem clamp(1.25rem, 4vw, 3rem);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand__logo {
  height: 46px;
  width: auto;
  background: rgba(251, 250, 247, 0.92);
  border-radius: 10px;
  padding: 6px 10px;
  box-shadow: 0 4px 18px rgba(15, 30, 43, 0.18);
}

.topbar__cta {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper);
  background: rgba(251, 250, 247, 0.12);
  border: 1px solid rgba(251, 250, 247, 0.55);
  padding: 0.62rem 1.15rem;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

.topbar__cta:hover {
  background: var(--paper);
  color: var(--navy-darker);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 65%;
  transform: scale(1.06);
  animation: hero-zoom 18s var(--ease) forwards;
}

@keyframes hero-zoom {
  to { transform: scale(1); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 26, 37, 0.55) 0%, rgba(15, 26, 37, 0.35) 38%, rgba(12, 21, 30, 0.82) 100%),
    linear-gradient(90deg, rgba(10, 18, 26, 0.35) 0%, rgba(10, 18, 26, 0) 45%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 46rem;
  padding: 7rem 1.5rem 4rem;
  text-align: center;
  color: var(--paper);
}

.eyebrow {
  display: inline-block;
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.08;
  margin: 0 0 1.1rem;
  letter-spacing: 0.01em;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-soft);
}

.hero__lede {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.6;
  color: rgba(251, 250, 247, 0.86);
  max-width: 34rem;
  margin: 0 auto 2.4rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}

.btn--primary {
  background: var(--gold);
  color: var(--navy-darker);
  box-shadow: 0 10px 30px rgba(211, 160, 82, 0.28);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(211, 160, 82, 0.38);
}

.btn--ghost {
  border: 1px solid rgba(251, 250, 247, 0.55);
  color: var(--paper);
}

.btn--ghost:hover {
  background: rgba(251, 250, 247, 0.12);
  transform: translateY(-2px);
}

/* ---------- Scroll cue ---------- */

.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px;
  height: 42px;
  border: 1.5px solid rgba(251, 250, 247, 0.6);
  border-radius: 14px;
}

.scroll-cue span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 4px;
  margin-left: -2px;
  background: var(--gold-soft);
  border-radius: 50%;
  animation: cue-drop 1.8s ease-in-out infinite;
}

@keyframes cue-drop {
  0% { opacity: 1; transform: translateY(0); }
  70% { opacity: 0; transform: translateY(14px); }
  100% { opacity: 0; transform: translateY(14px); }
}

/* ---------- Project / gallery ---------- */

.project {
  background: var(--cream);
  padding: clamp(4.5rem, 9vw, 7rem) clamp(1.25rem, 6vw, 4rem);
}

.project__intro {
  max-width: 42rem;
  margin: 0 auto 3.2rem;
  text-align: center;
}

.tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(48, 84, 112, 0.1);
  border: 1px solid rgba(48, 84, 112, 0.25);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}

.project__intro h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 2.9rem);
  color: var(--navy-darker);
  margin: 0 0 0.9rem;
}

.project__intro p {
  color: #4d5a63;
  line-height: 1.7;
  font-size: 1.02rem;
}

.project__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  max-width: 78rem;
  margin: 0 auto;
}

.project__gallery figure {
  position: relative;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 18px 40px rgba(22, 41, 58, 0.14);
}

.project__gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.project__gallery figure:hover img {
  transform: scale(1.07);
}

.project__gallery figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.9rem 1.1rem 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--paper);
  background: linear-gradient(180deg, rgba(15, 26, 37, 0) 0%, rgba(15, 26, 37, 0.72) 100%);
}

/* ---------- CTA ---------- */

.cta {
  background:
    radial-gradient(circle at 20% 15%, rgba(211, 160, 82, 0.18), transparent 45%),
    linear-gradient(160deg, var(--navy-dark), var(--navy-darker));
  color: var(--paper);
  text-align: center;
  padding: clamp(4.5rem, 10vw, 7.5rem) 1.5rem;
}

.cta h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  margin: 0 0 0.9rem;
}

.cta p {
  color: rgba(251, 250, 247, 0.78);
  max-width: 32rem;
  margin: 0 auto 2.2rem;
  line-height: 1.6;
}

.btn--whatsapp {
  background: #25d366;
  color: #0b3b22;
  font-weight: 600;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
  animation: pulse 2.6s ease-out infinite;
}

.btn--whatsapp svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.btn--whatsapp:hover {
  transform: translateY(-2px);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.cta__phone {
  display: block;
  margin-top: 1.4rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: var(--gold-soft);
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy-darker);
  color: rgba(251, 250, 247, 0.6);
  text-align: center;
  padding: 2.6rem 1.5rem 2.2rem;
  font-size: 0.82rem;
}

.site-footer__logo {
  height: 40px;
  width: auto;
  margin: 0 auto 1rem;
  background: rgba(251, 250, 247, 0.92);
  border-radius: 8px;
  padding: 5px 8px;
}

.site-footer p { margin: 0 0 0.35rem; }

.site-footer a { color: var(--gold-soft); }

/* ---------- Reveal ---------- */
/* Content is always visible — no scroll-linked or JS-gated opacity.
   Scroll-driven CSS animations were tried here but left content stuck
   at opacity:0 in some rendering contexts (e.g. full-page screenshots
   with no real scroll), which is an unacceptable risk on a page whose
   only job is to be seen. */

.reveal {
  opacity: 1;
}

/* ---------- Responsive ---------- */

@media (max-width: 860px) {
  .project__gallery {
    grid-template-columns: 1fr 1fr;
  }
  .project__gallery figure:first-child {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 560px) {
  .project__gallery {
    grid-template-columns: 1fr;
  }
  .project__gallery figure:first-child {
    aspect-ratio: 4 / 3;
  }
  .hero__content { padding-top: 6rem; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__media { animation: none; transform: none; }
  .scroll-cue span { animation: none; }
  .btn--whatsapp { animation: none; }
  .reveal { animation: none; opacity: 1; transform: none; }
}
