/* Real Fast Photos — shared site styles */

:root {
  --rfp-blue: #1E50E6;
  --rfp-blue-deep: #1A3FB8;
  --rfp-blue-ink: #0A1B4D;
  --rfp-yellow: #FFD60A;
  --rfp-yellow-warm: #FFB800;
  --rfp-cream: #FAF8F4;
  --rfp-white: #FFFFFF;
  --rfp-gray-100: #F1EFE9;
  --rfp-gray-200: #E5E2DA;
  --rfp-gray-400: #A8A89F;
  --rfp-gray-700: #4A4A45;
  --rfp-ink: #14152B;
  --rfp-display: 'Anton', 'Oswald', 'Helvetica Neue', sans-serif;
  --rfp-body: 'Inter', 'Helvetica Neue', system-ui, sans-serif;
  --rfp-shadow-sm: 0 1px 2px rgba(10, 27, 77, 0.06), 0 1px 3px rgba(10, 27, 77, 0.08);
  --rfp-shadow-md: 0 4px 12px rgba(10, 27, 77, 0.08), 0 2px 4px rgba(10, 27, 77, 0.06);
  --rfp-shadow-lg: 0 24px 48px -12px rgba(10, 27, 77, 0.18), 0 8px 16px -8px rgba(10, 27, 77, 0.12);
  --rfp-shadow-yellow: 0 12px 32px -8px rgba(255, 184, 0, 0.45);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--rfp-body);
  color: var(--rfp-ink);
  background: var(--rfp-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body { overflow-x: hidden; }

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

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

h1, h2, h3, h4 {
  font-family: var(--rfp-display);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}

p { line-height: 1.6; margin: 0 0 1em; }

/* ───────── Layout ───────── */

.rfp-container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.rfp-section {
  padding: clamp(64px, 9vw, 120px) 0;
}

/* ───────── Header / Nav ───────── */

.rfp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 244, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rfp-gray-200);
}

.rfp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.rfp-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--rfp-blue-ink);
}
.rfp-brand:hover { text-decoration: none; }

.rfp-brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: var(--rfp-shadow-sm);
}

.rfp-brand-text {
  font-family: var(--rfp-display);
  font-size: 22px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--rfp-blue-ink);
}

.rfp-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.rfp-nav a {
  color: var(--rfp-blue-ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 999px;
  transition: background 0.18s ease, color 0.18s ease;
}
.rfp-nav a:hover {
  background: var(--rfp-gray-100);
}
.rfp-nav a.is-active {
  background: var(--rfp-blue-ink);
  color: white;
}

.rfp-nav-cta {
  margin-left: 6px;
  background: var(--rfp-blue) !important;
  color: white !important;
  padding: 10px 18px !important;
}
.rfp-nav-cta:hover { background: var(--rfp-blue-deep) !important; }

.rfp-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

@media (max-width: 760px) {
  .rfp-nav { display: none; }
  .rfp-nav.is-open {
    display: flex;
    position: absolute;
    top: 100%;
    right: 4vw;
    flex-direction: column;
    align-items: stretch;
    background: white;
    padding: 12px;
    border-radius: 16px;
    box-shadow: var(--rfp-shadow-lg);
    border: 1px solid var(--rfp-gray-200);
    min-width: 200px;
  }
  .rfp-mobile-toggle { display: block; }
}

/* ───────── Buttons ───────── */

.rfp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--rfp-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.rfp-btn:hover { text-decoration: none; transform: translateY(-1px); }

.rfp-btn-primary {
  background: var(--rfp-yellow);
  color: var(--rfp-blue-ink);
  box-shadow: var(--rfp-shadow-yellow);
}
.rfp-btn-primary:hover {
  background: var(--rfp-yellow-warm);
  box-shadow: 0 16px 40px -8px rgba(255, 184, 0, 0.55);
}

.rfp-btn-dark {
  background: var(--rfp-blue-ink);
  color: white;
}
.rfp-btn-dark:hover { background: #050d2b; }

.rfp-btn-ghost {
  background: transparent;
  color: var(--rfp-blue-ink);
  border: 1.5px solid var(--rfp-blue-ink);
}
.rfp-btn-ghost:hover { background: var(--rfp-blue-ink); color: white; }

/* App Store badge */
.rfp-appstore {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: black;
  color: white;
  padding: 10px 22px 10px 18px;
  border-radius: 14px;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: var(--rfp-shadow-md);
}
.rfp-appstore:hover { transform: translateY(-2px); text-decoration: none; box-shadow: var(--rfp-shadow-lg); }
.rfp-appstore-eyebrow { font-size: 11px; opacity: 0.85; letter-spacing: 0.04em; }
.rfp-appstore-name { font-size: 19px; font-weight: 600; line-height: 1.1; }
.rfp-appstore svg { width: 28px; height: 28px; flex-shrink: 0; }

/* ───────── Footer ───────── */

.rfp-footer {
  background: var(--rfp-blue-ink);
  color: rgba(255, 255, 255, 0.75);
  padding: 64px 0 32px;
}

.rfp-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 960px) {
  .rfp-footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 720px) {
  .rfp-footer-grid { grid-template-columns: 1fr; gap: 36px; }
}

.rfp-footer h4 {
  color: white;
  font-size: 14px;
  font-family: var(--rfp-body);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.rfp-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rfp-footer-links a {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  text-decoration: none;
}
.rfp-footer-links a:hover { color: var(--rfp-yellow); }

.rfp-footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.rfp-footer-social svg {
  flex-shrink: 0;
  opacity: 0.85;
  transition: opacity 0.15s ease;
}
.rfp-footer-social a:hover svg { opacity: 1; }

.rfp-footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.rfp-footer-brand img {
  width: 48px; height: 48px; border-radius: 12px; object-fit: cover;
}
.rfp-footer-brandtext {
  font-family: var(--rfp-display);
  text-transform: uppercase;
  font-size: 24px;
  color: white;
  letter-spacing: 0.02em;
}
.rfp-footer-tag {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  max-width: 320px;
  line-height: 1.6;
}

.rfp-footer-more {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  text-align: center;
}
.rfp-footer-more a {
  color: var(--rfp-yellow);
  font-weight: 600;
  text-decoration: none;
}
.rfp-footer-more a:hover {
  text-decoration: underline;
}

.rfp-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* ───────── Page hero shared ───────── */

.rfp-page-hero {
  background: var(--rfp-blue);
  color: white;
  padding: 100px 0 140px;
  position: relative;
  overflow: hidden;
}

.rfp-page-hero h1 {
  font-size: clamp(48px, 7vw, 96px);
  color: white;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}

.rfp-page-hero p {
  font-size: clamp(16px, 1.6vw, 19px);
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0 auto;
}

.rfp-page-hero-inner {
  text-align: center;
  position: relative;
  z-index: 2;
}

.rfp-page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  height: 80px;
  background: var(--rfp-cream);
  clip-path: ellipse(80% 100% at 50% 100%);
}

/* Lightning decoration */
.rfp-bolt-deco {
  position: absolute;
  pointer-events: none;
  opacity: 0.08;
}

/* ───────── Cards / utility ───────── */

.rfp-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--rfp-shadow-md);
  border: 1px solid var(--rfp-gray-100);
}

.rfp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rfp-blue);
  margin-bottom: 20px;
}
.rfp-eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: currentColor;
}
.rfp-eyebrow.no-dash::before { display: none !important; }

.rfp-section-title {
  font-size: clamp(40px, 5vw, 68px);
  color: var(--rfp-blue-ink);
  margin-bottom: 20px;
}

.rfp-section-lead {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--rfp-gray-700);
  max-width: 640px;
  line-height: 1.6;
}

/* Wave divider */
.rfp-wave-divider {
  display: block;
  width: 100%;
  height: 80px;
}
