/* Resite360 - shared styles for interior pages (location/service/legal) */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17.5px; }
:root {
  --blue: #1D4ED8; --blue-bright: #3B82F6; --blue-dark: #1E3A8A; --blue-glow: rgba(29,78,216,0.18);
  --navy: #0F172A; --navy-2: #1E293B; --white: #FFFFFF; --off-white: #F8FAFF;
  --blue-50: #EFF6FF; --blue-100: #DBEAFE;
  --gray-1: #E2E8F0; --gray-2: #94A3B8; --gray-3: #64748B; --gray-4: #334155;
  --serif: 'Sora', system-ui, sans-serif; --sans: 'Inter', system-ui, sans-serif;
  --nav-h: 88px; --trans: 0.35s cubic-bezier(0.4,0,0.2,1);
}
body { font-family: var(--sans); background: var(--white); color: var(--navy); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1080px; margin: 0 auto; padding: 0 32px; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; font-family: var(--sans); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; border: none; transition: var(--trans); white-space: nowrap; }
.btn-blue { background: var(--blue); color: var(--white); }
.btn-blue:hover { background: var(--blue-bright); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.45); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

/* Header (always solid white on interior pages) */
#header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: var(--nav-h); display: flex; align-items: center; background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); box-shadow: 0 1px 0 rgba(15,23,42,0.08); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 40px; }
.logo-img { height: 54px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { font-size: 0.82rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-3); transition: color var(--trans); }
.nav-links a:hover { color: var(--navy); }
@media (max-width: 900px) { .nav-links { display: none; } }

/* Page hero band */
.page-hero { background: radial-gradient(ellipse at 25% 50%, rgba(29,78,216,0.45) 0%, transparent 60%), radial-gradient(ellipse at 80% 20%, rgba(59,130,246,0.25) 0%, transparent 55%), linear-gradient(180deg, #0F172A 0%, #0C1425 100%); padding: calc(var(--nav-h) + 88px) 0 88px; color: var(--white); }
.breadcrumb { font-size: 0.74rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 22px; }
.breadcrumb a { color: rgba(255,255,255,0.75); }
.breadcrumb a:hover { color: var(--white); }
.page-hero h1 { font-family: var(--serif); font-size: clamp(2rem, 4.5vw, 3.1rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1.12; max-width: 820px; }
.page-hero .lede { font-size: 1.05rem; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,0.78); max-width: 720px; margin-top: 24px; }
.page-hero .hero-actions { display: flex; gap: 16px; margin-top: 36px; flex-wrap: wrap; }

/* Content sections */
section.page-section { padding: 88px 0; }
section.page-section.alt { background: var(--off-white); }
.tag { display: inline-block; font-size: 0.76rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue-bright); margin-bottom: 12px; }
.page-section h2 { font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1.2; margin-bottom: 24px; max-width: 760px; }
.page-section h3 { font-family: var(--serif); font-size: 1.08rem; font-weight: 600; letter-spacing: -0.01em; margin: 36px 0 12px; }
.page-section p { font-size: 0.98rem; font-weight: 300; line-height: 1.85; color: var(--gray-4); margin-bottom: 18px; max-width: 760px; }
.page-section p a, .page-section li a { color: var(--blue); border-bottom: 1px solid var(--blue-glow); transition: border-color var(--trans); }
.page-section p a:hover, .page-section li a:hover { border-color: var(--blue); }
.check-list { margin: 8px 0 24px; max-width: 760px; }
.check-list li { position: relative; padding-left: 30px; font-size: 0.96rem; font-weight: 300; line-height: 1.8; color: var(--gray-4); margin-bottom: 12px; }
.check-list li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--blue); font-weight: 700; }
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 40px; }
.card { background: var(--white); border: 1px solid var(--gray-1); padding: 32px 28px; }
.alt .card { background: var(--white); }
.card h3 { margin: 0 0 10px; }
.card p { font-size: 0.9rem; margin-bottom: 0; }

/* FAQ */
.faq-list { max-width: 820px; margin-top: 32px; }
.faq-list details { border-bottom: 1px solid var(--gray-1); padding: 22px 0; }
.faq-list summary { font-family: var(--serif); font-size: 1rem; font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; color: var(--blue); font-size: 1.3rem; font-weight: 400; flex-shrink: 0; }
.faq-list details[open] summary::after { content: '−'; }
.faq-list details p { margin: 16px 0 0; }

/* CTA band */
.cta-band { background: linear-gradient(135deg, var(--navy) 0%, var(--blue-dark) 100%); color: var(--white); padding: 96px 0; text-align: center; }
.cta-band h2 { font-family: var(--serif); font-size: clamp(1.6rem, 3.4vw, 2.4rem); font-weight: 700; letter-spacing: -0.03em; margin-bottom: 18px; }
.cta-band p { font-size: 1rem; font-weight: 300; color: rgba(255,255,255,0.78); max-width: 600px; margin: 0 auto 36px; line-height: 1.8; }
.cta-band-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-contact-line { margin-top: 28px; font-size: 0.88rem; color: rgba(255,255,255,0.65); }
.cta-contact-line a { color: var(--white); border-bottom: 1px solid rgba(255,255,255,0.35); }

/* Footer */
footer { background: var(--navy); border-top: 1px solid rgba(255,255,255,0.06); padding: 64px 0 36px; color: var(--gray-2); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 0.88rem; font-weight: 300; line-height: 1.8; color: var(--gray-3); max-width: 280px; margin-top: 16px; }
.footer-logo { height: 58px; width: auto; }
.footer-col h4 { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray-3); margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul a { font-size: 0.85rem; font-weight: 300; color: var(--gray-2); transition: color var(--trans); }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-copy { font-size: 0.72rem; color: var(--gray-3); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.68rem; color: var(--gray-3); letter-spacing: 0.08em; }
.footer-legal a:hover { color: var(--white); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  section.page-section, .page-hero { padding-top: 64px; padding-bottom: 64px; }
  .page-hero { padding-top: calc(var(--nav-h) + 56px); }
}
@media (max-width: 480px) {
  html { font-size: 15px; }
  .container { padding: 0 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .btn { padding: 13px 22px; font-size: 0.72rem; }
  .cta-band-actions { flex-direction: column; }
}
