/* ============================================
   ROBERT SKIRVIN ORR — SHARED STYLES
   All pages link to this file
   ============================================ */

:root {
  --navy: #1a2849;
  --navy-deep: #0f1a35;
  --slate: #7a8a9e;
  --slate-light: #c8d2dc;
  --cream: #faf8f3;
  --cream-warm: #f4efe6;
  --white: #ffffff;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--cream);
  color: var(--navy);
  line-height: 1.6;
  font-weight: 300;
  overflow-x: hidden;
}

/* ============ NAV ============ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 14px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background: rgba(250, 248, 243, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(26, 40, 73, 0.08);
}
.nav-logo { display: block; }
.nav-logo-img { height: 40px; width: auto; display: block; }
.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}
.nav-links a {
  color: var(--navy);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.3s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--slate); }
.nav-cta {
  background: var(--navy);
  color: var(--cream) !important;
  padding: 10px 20px;
  border-radius: 2px;
  transition: background 0.3s;
}
.nav-cta:hover { background: var(--navy-deep); color: var(--cream) !important; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { cursor: pointer; }
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cream);
  border: 1px solid rgba(26, 40, 73, 0.1);
  min-width: 240px;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  box-shadow: 0 12px 30px -12px rgba(26, 40, 73, 0.2);
  margin-top: 8px;
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 22px;
  font-size: 12px;
  letter-spacing: 1.5px;
}
.nav-dropdown-menu a:hover {
  background: var(--cream-warm);
  color: var(--navy);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

/* ============ PAGE HEADER ============ */
.page-hero {
  padding: 160px 40px 80px;
  text-align: center;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  border: 1px solid var(--slate-light);
  border-radius: 50%;
  opacity: 0.3;
  z-index: 0;
}
.page-hero-content { position: relative; z-index: 1; }
.page-eyebrow {
  font-family: 'Pinyon Script', cursive;
  font-size: 30px;
  color: var(--slate);
  margin-bottom: 4px;
}
.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 54px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 14px;
  letter-spacing: 1px;
  line-height: 1.1;
}
.page-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--slate);
  max-width: 640px;
  margin: 0 auto;
}
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 24px auto 0;
  gap: 14px;
  max-width: 200px;
}
.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--slate);
}
.divider span {
  width: 6px; height: 6px;
  background: var(--slate);
  border-radius: 50%;
}

/* ============ SECTIONS ============ */
section {
  padding: 80px 60px;
  position: relative;
}
.section-alt { background: var(--white); }
.section-navy { background: var(--navy); color: var(--cream); }
.section-navy .section-title { color: var(--cream); }
.container {
  max-width: 900px;
  margin: 0 auto;
}
.section-eyebrow {
  font-family: 'Pinyon Script', cursive;
  font-size: 26px;
  color: var(--slate);
  text-align: center;
  margin-bottom: 4px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 500;
  color: var(--navy);
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

/* ============ BODY TEXT ============ */
.prose {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  line-height: 1.9;
  color: var(--navy);
  max-width: 720px;
  margin: 0 auto;
}
.prose p { margin-bottom: 18px; }
.prose h3 {
  font-size: 24px;
  color: var(--navy);
  margin: 30px 0 12px;
  font-weight: 500;
}

/* ============ PLACEHOLDER CALLOUT ============ */
.placeholder {
  background: rgba(212, 160, 23, 0.08);
  border-left: 3px solid #d4a017;
  padding: 12px 18px;
  margin: 14px 0;
  color: #8b6914;
  font-family: 'Outfit', sans-serif;
  font-style: italic;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  background: var(--navy);
  color: var(--cream);
  padding: 16px 40px;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: all 0.3s;
  border: 1px solid var(--navy);
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
}
.btn:hover { background: transparent; color: var(--navy); }
.btn-outline {
  background: transparent;
  color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--cream); }

/* ============ SERVICE GRID (Services page) ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.service-card {
  background: var(--white);
  padding: 32px 22px;
  text-align: center;
  border: 1px solid rgba(26, 40, 73, 0.06);
  transition: all 0.4s;
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--navy);
  transform: scaleX(0);
  transition: transform 0.4s;
  transform-origin: left;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(26, 40, 73, 0.15);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 50px; height: 50px;
  margin: 0 auto 16px;
  border: 1px solid var(--slate-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}
.service-title {
  font-size: 12px;
  font-weight: 500;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}
.service-desc {
  font-size: 13px;
  color: var(--slate);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  line-height: 1.5;
}

/* ============ FAQ ============ */
.faq-item {
  border-bottom: 1px solid rgba(26, 40, 73, 0.1);
  padding: 20px 0;
}
.faq-question {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 8px;
}
.faq-answer {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: var(--slate);
  line-height: 1.7;
}

/* ============ PRICING CARDS ============ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--white);
  padding: 40px 30px;
  text-align: center;
  border: 1px solid rgba(26, 40, 73, 0.1);
}
.pricing-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  color: var(--navy);
  margin-bottom: 8px;
}
.pricing-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  color: var(--navy);
  margin: 16px 0;
}
.pricing-details {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  color: var(--slate);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* ============ CONTACT FORM ============ */
.contact-form {
  max-width: 640px;
  margin: 0 auto;
}
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--navy);
  margin-bottom: 6px;
  font-weight: 500;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--slate-light);
  background: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: var(--navy);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--navy);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-submit { margin-top: 10px; }

/* ============ TESTIMONIAL CARDS ============ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}
.testimonial-card {
  background: var(--white);
  padding: 30px;
  border-left: 3px solid var(--slate);
}
.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--navy);
  line-height: 1.7;
  margin-bottom: 14px;
}
.testimonial-author {
  font-size: 12px;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ============ DISCLAIMER BANNER ============ */
.disclaimer-banner {
  background: var(--cream-warm);
  padding: 16px 24px;
  text-align: center;
  font-size: 13px;
  color: var(--slate);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  border-top: 1px solid var(--slate-light);
  border-bottom: 1px solid var(--slate-light);
}

/* ============ FOOTER ============ */
footer {
  background: var(--navy-deep);
  color: var(--slate-light);
  padding: 50px 60px 30px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}
.footer-col h4 {
  font-size: 11px;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
  font-weight: 500;
}
.footer-col a {
  display: block;
  color: var(--slate-light);
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 8px;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--cream); }
.footer-brand-img { height: 60px; margin-bottom: 12px; }
.footer-tagline {
  font-size: 10px;
  color: var(--slate);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.footer-blurb {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  color: var(--slate-light);
  font-style: italic;
  line-height: 1.6;
}
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.footer-socials a {
  width: 32px; height: 32px;
  border: 1px solid var(--slate);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-light);
  margin-bottom: 0;
}
.footer-socials a:hover {
  background: var(--cream);
  color: var(--navy);
  border-color: var(--cream);
}
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(122, 138, 158, 0.2);
  font-size: 10px;
  color: var(--slate);
  letter-spacing: 1px;
  text-align: center;
  line-height: 1.8;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  nav { padding: 12px 20px; }
  .nav-links { gap: 12px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .nav-dropdown { display: none; }
  section, .page-hero { padding: 60px 24px; }
  .page-title { font-size: 36px; }
  .section-title { font-size: 28px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
}
