/* __WHITEPAGE_V10__ site=scu.gr.com generated=2026-05-16 palette=deep-navy+mahogany-gold+warm-linen */

/* === V10 Minimal Brand-First — Custom Properties === */
:root {
  --color-deep-navy: #0D1B2A;
  --color-mahogany-gold: #B8860B;
  --color-warm-linen: #F5F0E8;
  --color-white: #FFFFFF;
  --color-off-white: #FAF8F5;
  --color-slate: #1B2838;
  --color-muted: #6B7280;
  --color-light-muted: #9CA3AF;
  --color-border: #E5E0D8;
  --color-success: #1A6B3C;
  --color-accent-soft: rgba(184, 134, 11, 0.08);
  --font-system: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --max-width: 1200px;
  --content-width: 780px;
  --radius-sm: 4px;
  --radius-md: 8px;
}

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-system);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-deep-navy);
  background: var(--color-off-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* === Typography === */
:where(h1, h2, h3, h4, h5, h6) {
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-deep-navy);
}

:where(main section h2) {
  font-size: 2rem;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

:where(main section h3) {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

:where(main section p) {
  margin-bottom: 1.2rem;
  color: var(--color-slate);
}

:where(main section a) {
  color: var(--color-mahogany-gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

:where(main section a:hover) {
  border-bottom-color: var(--color-mahogany-gold);
}

/* === Navigation === */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  padding: 0.85rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
}

.nav__brand {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-deep-navy);
  text-decoration: none;
  letter-spacing: -0.03em;
}

.nav__brand span {
  color: var(--color-mahogany-gold);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav__links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-slate);
  text-decoration: none;
  transition: color 0.2s;
}

.nav__links a:hover { color: var(--color-mahogany-gold); }

.nav__signin {
  background: var(--color-mahogany-gold);
  color: var(--color-white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 700 !important;
}

.nav__signin:hover {
  background: #9A7009;
  color: var(--color-white) !important;
}

/* === Hero === */
.hero {
  min-height: 55vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 2rem;
  background: linear-gradient(180deg, var(--color-warm-linen) 0%, var(--color-off-white) 100%);
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle at center, var(--color-accent-soft) 0%, transparent 70%);
  pointer-events: none;
}

.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  max-width: 900px;
  position: relative;
  z-index: 1;
}

.hero h1 span {
  color: var(--color-mahogany-gold);
}

.hero__subtitle {
  font-size: 1.2rem;
  color: var(--color-muted);
  max-width: 620px;
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
  line-height: 1.6;
}

.hero__cta {
  display: inline-block;
  margin-top: 2.5rem;
  padding: 0.9rem 2.5rem;
  background: var(--color-mahogany-gold);
  color: var(--color-white);
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  position: relative;
  z-index: 1;
  transition: background 0.2s, transform 0.2s;
}

.hero__cta:hover {
  background: #9A7009;
  transform: translateY(-1px);
}

/* === Main Content Area === */
.main {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 4rem 2rem;
}

/* === Products (Anchored-Link List) === */
:where(main section:not(.hero):not(.faq-section)) {
  padding: 3rem 0;
  border-top: 1px solid var(--color-border);
}

:where(main section:not(.hero) h2) {
  font-size: 1.8rem;
  margin-bottom: 0.4rem;
}

:where(main section:not(.hero) h2 a) {
  color: var(--color-deep-navy);
  border-bottom: none;
}

:where(main section:not(.hero) h2 a:hover) {
  color: var(--color-mahogany-gold);
}

/* === Featured Quote === */
.quote-featured {
  max-width: 680px;
  margin: 4rem auto;
  padding: 3rem 2rem;
  text-align: center;
  border-top: 2px solid var(--color-mahogany-gold);
  border-bottom: 2px solid var(--color-mahogany-gold);
}

.quote-featured blockquote {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-deep-navy);
  font-style: italic;
}

.quote-featured cite {
  display: block;
  margin-top: 1.5rem;
  font-size: 0.95rem;
  font-style: normal;
  font-weight: 600;
  color: var(--color-muted);
}

/* === Numbered FAQ === */
.faq-section ol {
  list-style: none;
  counter-reset: faq-counter;
  padding: 0;
}

.faq-section li {
  counter-increment: faq-counter;
  padding: 1.75rem 0;
  border-top: 1px solid var(--color-border);
}

.faq-section li:last-child {
  border-bottom: 1px solid var(--color-border);
}

.faq-section li::before {
  content: counter(faq-counter, decimal-leading-zero) '.';
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-mahogany-gold);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.faq-section li h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.faq-section li p {
  color: var(--color-slate);
}

/* === CTA Section === */
.cta-block {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(180deg, var(--color-off-white) 0%, var(--color-warm-linen) 100%);
  border-top: 1px solid var(--color-border);
}

.cta-block h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-block p {
  color: var(--color-muted);
  max-width: 500px;
  margin: 0 auto 2rem;
}

.cta-btn {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background: var(--color-mahogany-gold);
  color: var(--color-white);
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.2s;
}

.cta-btn:hover { background: #9A7009; }

/* === Mega Footer === */
.mega-footer {
  background: var(--color-deep-navy);
  color: var(--color-warm-linen);
  padding: 4rem 2rem 2rem;
}

.mega-footer__grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}

.mega-footer__col h4 {
  color: var(--color-white);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.mega-footer__col ul {
  list-style: none;
  padding: 0;
}

.mega-footer__col li {
  margin-bottom: 0.6rem;
}

.mega-footer__col a {
  color: var(--color-light-muted);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
}

.mega-footer__col a:hover {
  color: var(--color-mahogany-gold);
}

.mega-footer__trust {
  max-width: var(--max-width);
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--color-light-muted);
}

.mega-footer__trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.mega-footer__trust .badge-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  background: var(--color-mahogany-gold);
  border-radius: 50%;
}

.mega-footer__bottom {
  text-align: center;
  padding-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--color-light-muted);
  opacity: 0.7;
}

/* === Breadcrumbs (sub-pages) === */
.breadcrumbs {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 1.5rem 2rem 0;
  font-size: 0.85rem;
  color: var(--color-muted);
}

.breadcrumbs a {
  color: var(--color-muted);
  text-decoration: none;
}

.breadcrumbs a:hover { color: var(--color-mahogany-gold); }

.breadcrumbs span { color: var(--color-deep-navy); font-weight: 600; }

/* === Sub-page Minimal Masthead === */
.masthead--sub {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 2.5rem 2rem 1rem;
}

.masthead--sub h1 {
  font-size: 2.2rem;
  letter-spacing: -0.03em;
}

/* === Data Table === */
:where(main section table) {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.95rem;
}

:where(main section th) {
  text-align: left;
  padding: 0.75rem 1rem;
  background: var(--color-deep-navy);
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.85rem;
}

:where(main section td) {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--color-border);
}

:where(main section tr:nth-child(even) td) {
  background: var(--color-off-white);
}

/* === Related Services Block === */
.related-services {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
  border-top: 2px solid var(--color-mahogany-gold);
}

.related-services h3 {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  color: var(--color-deep-navy);
}

.related-services ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
}

.related-services a {
  font-size: 0.95rem;
  color: var(--color-mahogany-gold);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.related-services a:hover { border-bottom-color: var(--color-mahogany-gold); }

/* === Lead Callout === */
.lead-callout {
  background: var(--color-accent-soft);
  border-left: 4px solid var(--color-mahogany-gold);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.lead-callout h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-deep-navy);
  margin-bottom: 0.4rem;
}

.lead-callout p {
  font-size: 0.95rem;
  margin-bottom: 0;
  color: var(--color-slate);
}

/* === Zero-click snippet === */
.zero-click {
  font-size: 1rem;
  color: var(--color-muted);
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* === Responsive === */
@media (max-width: 900px) {
  .mega-footer__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .nav {
    padding: 0.75rem 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .nav__links {
    gap: 1rem;
    font-size: 0.8rem;
  }
  .hero {
    min-height: 40vh;
    padding: 3rem 1rem;
  }
  .hero h1 {
    font-size: clamp(1.8rem, 6vw, 2.8rem);
  }
  .main {
    padding: 2rem 1rem;
  }
  .mega-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .quote-featured {
    padding: 2rem 1rem;
  }
  .quote-featured blockquote {
    font-size: 1.2rem;
  }
}

@media (max-width: 400px) {
  .mega-footer__grid {
    grid-template-columns: 1fr;
  }
  .nav__links {
    gap: 0.6rem;
    font-size: 0.75rem;
  }
}

/* === Accessibility === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

:focus-visible {
  outline: 2px solid var(--color-mahogany-gold);
  outline-offset: 2px;
}

/* === Print === */
@media print {
  .nav, .mega-footer, .cta-block, .hero__cta { display: none; }
  body { font-size: 12pt; color: #000; }
  a { color: #000; }
}
