/* ============================================================
   STROVOLOS RESIDENCES — rlt-project-1.css
   Warm cream · Walnut · Brass accents
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand-orange: #FF6420;
  --warm:         #A0764E;
  --charcoal:     #2A2A2A;
  --stratus:      #8A8A8A;
  --off-white:    #F5F4F0;
  --cream:        #FAF8F5;
  --white:        #FFFFFF;
  --black:        #0C0C0C;
  --ml: max(48px, 7vw);
  --mr: max(48px, 7vw);

  --fs-72:  clamp(36px, 5vw, 72px);
  --fs-36:  clamp(22px, 2.5vw, 36px);
  --fs-25:  clamp(16px, 1.74vw, 25px);
  --fs-15:  15px;
  --fs-11:  11px;
  --fs-9:   9px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html { scrollbar-width: none; -ms-overflow-style: none; }
body {
  background: var(--cream); color: var(--black);
  font-family: 'Manrope', sans-serif; font-weight: 300;
  -webkit-font-smoothing: antialiased;
}
.syne    { font-family: 'Syne', sans-serif; font-weight: 700; }
.mono    { font-family: 'IBM Plex Mono', monospace; }
.manrope { font-family: 'Manrope', sans-serif; }
::selection { background: var(--warm); color: var(--white); }
::-webkit-scrollbar { display: none; }

/* Scroll progress */
.scroll-progress-track { position: fixed; top: 0; right: 0; width: 15px; height: 100vh; z-index: 9999; pointer-events: none; }
.scroll-progress-fill { position: absolute; top: 0; left: 0; width: 100%; height: 0%; background: var(--warm); }

/* Reveals */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }

/* ============================================================
   HEADER
============================================================ */
#main-nav { position: fixed; top: 0; left: 0; width: 100%; z-index: 1500; background: transparent; opacity: 0; transition: opacity .4s ease, transform .35s cubic-bezier(0.76, 0, 0.24, 1), background .4s ease; pointer-events: none; }
#main-nav.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
#main-nav.nav-scrolled { background: rgba(250,248,245,0.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
#main-nav.nav-hidden { transform: translateY(-100%); opacity: 0; pointer-events: none; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 20px var(--mr) 20px var(--ml); position: relative; }
.nav-logo-wrap { display: flex; align-items: center; text-decoration: none; }
.nav-logo-svg { width: auto; height: 40px; overflow: visible; }
.nav-links { display: flex; align-items: center; gap: 48px; position: absolute; left: 50%; transform: translateX(-50%); }
.nav-link { font-size: var(--fs-11); font-weight: 700; color: var(--black); text-decoration: none; letter-spacing: .04em; opacity: .65; transition: opacity .2s ease; }
.nav-link:hover { opacity: 1; }
.nav-clock { font-size: var(--fs-11); font-weight: 400; letter-spacing: .14em; color: var(--warm); width: 220px; flex-shrink: 0; text-align: right; white-space: nowrap; overflow: hidden; }

/* Back button */
#rp-back { position: fixed; top: 80px; left: var(--ml); z-index: 2000; display: flex; align-items: center; gap: 8px; text-decoration: none; color: var(--warm); opacity: 0; pointer-events: none; transition: opacity 0.3s ease, transform 0.3s ease; }
#rp-back.visible { opacity: 1; pointer-events: all; }
#rp-back:hover { opacity: 0.6; transform: translateX(-4px); }
.rp-back-icon { font-size: 14px; }
.rp-back-label { font-size: var(--fs-9); letter-spacing: 0.14em; text-transform: uppercase; }

/* ============================================================
   HERO
============================================================ */
#rp-hero { position: relative; width: 100%; height: 100vh; overflow: hidden; }
.rp-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.rp-hero-vignette {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to top,
    rgba(12,12,12,0.8) 0%,
    rgba(12,12,12,0.25) 35%,
    transparent 65%
  );
}
.rp-hero-content { position: absolute; bottom: 80px; left: var(--ml); z-index: 2; display: flex; flex-direction: column; gap: 12px; }
.rp-hero-eyebrow { font-size: var(--fs-9); letter-spacing: 0.16em; text-transform: uppercase; color: var(--warm); }
.rp-hero-title { font-size: clamp(36px, 6vw, 80px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; color: var(--white); text-shadow: 0 2px 40px rgba(0,0,0,0.3); }
.rp-hero-sub { font-size: 10px; letter-spacing: 0.1em; color: rgba(255,255,255,0.6); }

/* ============================================================
   INFO — two columns
============================================================ */
#rp-info { width: 100%; background: var(--cream); display: flex; align-items: stretch; padding: 100px 0; }
.rp-info-col--text { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 0 60px 0 var(--ml); }
.rp-info-eyebrow { font-size: var(--fs-9); letter-spacing: 0.2em; text-transform: uppercase; color: var(--warm); margin-bottom: 32px; }
.rp-info-headline { font-size: var(--fs-36); font-weight: 800; line-height: 1.25; letter-spacing: -0.02em; color: var(--black); max-width: 560px; margin-bottom: 32px; }
.rp-info-body { font-size: var(--fs-15); font-weight: 300; line-height: 1.75; color: var(--charcoal); max-width: 480px; }

.rp-info-col--meta { width: 300px; flex-shrink: 0; display: flex; flex-direction: column; justify-content: center; gap: 28px; padding: 0 var(--mr) 0 48px; border-left: 1px solid rgba(160,118,78,0.15); }
.rp-meta-item { display: flex; flex-direction: column; gap: 4px; }
.rp-meta-key { font-size: var(--fs-9); letter-spacing: 0.1em; text-transform: uppercase; color: var(--warm); }
.rp-meta-val { font-size: var(--fs-11); font-weight: 400; color: var(--black); }

/* ============================================================
   IMAGE SECTIONS — uncropped, proper aspect ratio
============================================================ */

/* Contained — padded, centered, natural ratio */
.rp-img-section {
  padding: 60px var(--ml);
  background: var(--cream);
  display: flex;
  justify-content: center;
}
.rp-contained-img {
  width: 100%;
  max-width: 1100px;
  height: auto;
  display: block;
}

/* Full bleed — edge to edge, natural ratio */
.rp-img-fullbleed {
  width: 100%;
}
.rp-full-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Pair — two images side by side, equal height, natural ratio */
.rp-img-pair {
  display: flex;
  gap: 16px;
  padding: 0 var(--ml);
  background: var(--cream);
}
.rp-pair-img {
  flex: 1;
  width: 50%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ============================================================
   QUOTE
============================================================ */
#rp-quote {
  min-height: 40vh; background: var(--cream);
  padding: 80px var(--mr) 80px var(--ml);
  display: flex; flex-direction: column; justify-content: center;
}
.rp-quote-label {
  font-size: var(--fs-9); letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--warm);
  font-style: italic; margin-bottom: 16px;
}
.rp-quote-text {
  font-size: var(--fs-25); line-height: 1.4;
  color: var(--black); max-width: 640px;
}

/* ============================================================
   FOOTER
============================================================ */
#footer { position: relative; min-height: 100vh; background: var(--black); display: flex; flex-direction: column; justify-content: space-between; }
.footer-main { display: flex; justify-content: space-between; align-items: flex-start; padding: 120px var(--mr) 80px var(--ml); flex: 1; gap: 80px; }
.footer-left { max-width: 520px; display: flex; flex-direction: column; gap: 28px; }
.footer-label { font-size: var(--fs-9); letter-spacing: 0.2em; text-transform: uppercase; color: var(--warm); }
.footer-headline { font-size: var(--fs-72); font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; color: var(--off-white); }
.footer-headline-accent { color: var(--warm); }
.footer-cta-btn { display: inline-flex; align-items: center; gap: 12px; margin-top: 12px; padding: 16px 32px; background: var(--warm); text-decoration: none; width: fit-content; transition: all 0.4s var(--ease); }
.footer-cta-btn:hover { gap: 20px; padding: 16px 40px 16px 32px; background: #b8885e; }
.footer-cta-btn-text { font-size: var(--fs-9); letter-spacing: 0.14em; text-transform: uppercase; color: var(--black); font-weight: 500; }
.footer-cta-btn-arrow { font-size: 14px; color: var(--black); transition: transform 0.3s var(--ease); }
.footer-cta-btn:hover .footer-cta-btn-arrow { transform: translateX(4px); }
.footer-right { display: flex; flex-direction: column; gap: 36px; padding-top: 56px; }
.footer-contact-block { display: flex; flex-direction: column; gap: 6px; }
.footer-contact-label { font-size: var(--fs-9); letter-spacing: 0.14em; text-transform: uppercase; color: var(--warm); }
.footer-contact-value { font-size: var(--fs-15); font-weight: 400; color: var(--off-white); text-decoration: none; line-height: 1.5; transition: color 0.2s ease; }
a.footer-contact-value:hover { color: var(--warm); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 24px var(--mr) 24px var(--ml); border-top: 1px solid rgba(138,138,138,0.1); }
.footer-bottom-left { display: flex; align-items: center; gap: 20px; }
.footer-logo-svg { width: auto; height: 32px; overflow: visible; flex-shrink: 0; }
.footer-copyright { font-size: var(--fs-9); letter-spacing: 0.08em; color: var(--stratus); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) { :root { --ml: 56px; --mr: 56px; } }
@media (max-width: 768px) {
  :root { --ml: 24px; --mr: 24px; }
  #rp-info { flex-direction: column; padding: 60px 0; }
  .rp-info-col--text { padding: 0 var(--ml); }
  .rp-info-col--meta { width: 100%; border-left: none; border-top: 1px solid rgba(160,118,78,0.15); padding: 40px var(--ml) 0; margin-top: 40px; }
  .rp-img-pair { flex-direction: column; gap: 12px; }
  .rp-pair-img { width: 100%; }
  .footer-main { flex-direction: column; padding: 80px var(--ml) 60px; gap: 48px; }
  .footer-right { padding-top: 0; }
  .footer-bottom { flex-direction: column; gap: 20px; align-items: flex-start; }
}