/* ==========================================
   MOOR & CO — Main Stylesheet
   Colours: Cream #f5f0e8 | White #ffffff | Charcoal #1a1c1e | Amber #c17f3a
   ========================================== */

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'DM Sans', sans-serif;
  color: #1a1c1e;
  width: 100%;
  overflow-x: hidden;
}

/* ==========================================
   NAVIGATION
   ========================================== */

nav {
  background: #f5f0e8;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2.5rem;
  border-bottom: 0.5px solid rgba(26,28,30,0.12);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo { text-decoration: none; }
.logo-text { font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 22px; letter-spacing: 6px; color: #1a1c1e; }
.logo-sub { font-size: 9px; letter-spacing: 3px; color: #c17f3a; font-weight: 500; margin-top: 2px; }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a { text-decoration: none; font-size: 13px; letter-spacing: 1px; color: #1a1c1e; opacity: 0.7; font-weight: 400; transition: opacity 0.2s; }
.nav-links a:hover { opacity: 1; }
.nav-cta { background: #1a1c1e !important; color: #f5f0e8 !important; opacity: 1 !important; padding: 0.6rem 1.4rem !important; font-size: 12px !important; letter-spacing: 2px !important; font-weight: 500 !important; }
.nav-cta:hover { background: #c17f3a !important; }

/* ==========================================
   VIDEO HERO
   ========================================== */

.video-hero {
  position: relative;
  width: 100%;
  height: 580px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-hero video {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: 0;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18,15,12,0.74);
  z-index: 1;
}

.video-overlay::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: #c17f3a;
}

.video-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 720px;
}

.video-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 4px;
  color: #c17f3a;
  font-weight: 500;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #c17f3a;
  padding-bottom: 4px;
}

.video-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 58px;
  font-weight: 300;
  line-height: 1.12;
  color: #f5f0e8;
  margin-bottom: 1.25rem;
}

.video-h1 em { font-style: italic; color: #c17f3a; }

.video-p {
  font-size: 16px;
  line-height: 1.75;
  color: #f5f0e8;
  opacity: 0.75;
  margin-bottom: 2rem;
}

.video-btns { display: flex; gap: 1rem; align-items: center; justify-content: center; }

/* ==========================================
   PAGE HERO (inner pages)
   ========================================== */

.page-hero {
  background: #f5f0e8;
  padding: 5rem 2.5rem 4rem;
  border-bottom: 3px solid #c17f3a;
}

.page-hero-content { max-width: 680px; }

.page-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  line-height: 1.15;
  color: #1a1c1e;
  margin: 1rem 0;
}

.page-hero-p {
  font-size: 16px;
  line-height: 1.75;
  color: #1a1c1e;
  opacity: 0.65;
}

/* ==========================================
   STATS STRIP
   ========================================== */

.stats {
  background: #f5f0e8;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border-bottom: 0.5px solid rgba(26,28,30,0.12);
}

.stat { padding: 2rem 2.5rem; border-right: 0.5px solid rgba(26,28,30,0.12); }
.stat:last-child { border-right: none; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 40px; font-weight: 300; color: #c17f3a; line-height: 1; margin-bottom: 0.4rem; }
.stat-label { font-size: 11px; letter-spacing: 1px; color: #1a1c1e; opacity: 0.5; line-height: 1.4; }

/* ==========================================
   SERVICES — HOME
   ========================================== */

.services { background: #ffffff; padding: 4rem 2.5rem; }
.section-tag { font-size: 10px; letter-spacing: 4px; color: #c17f3a; font-weight: 500; margin-bottom: 0.75rem; }
.section-h2 { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 300; color: #1a1c1e; margin-bottom: 2.5rem; max-width: 520px; line-height: 1.2; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(26,28,30,0.08); }
.service-card { background: #ffffff; padding: 2rem; }
.service-num { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 300; color: #c17f3a; opacity: 0.4; margin-bottom: 1rem; line-height: 1; }
.service-title { font-size: 15px; font-weight: 600; color: #1a1c1e; margin-bottom: 0.75rem; }
.service-desc { font-size: 13px; line-height: 1.7; color: #1a1c1e; opacity: 0.6; }
.service-link { display: inline-block; margin-top: 1.25rem; font-size: 11px; letter-spacing: 2px; color: #c17f3a; font-weight: 500; text-decoration: none; border-bottom: 1px solid #c17f3a; padding-bottom: 2px; }

/* ==========================================
   ABOUT STRIP — HOME
   ========================================== */

.about-strip {
  background: #ffffff;
  padding: 4rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  border-top: 0.5px solid rgba(26,28,30,0.08);
}

.about-p { font-size: 14px; line-height: 1.85; color: #1a1c1e; opacity: 0.65; margin-bottom: 1rem; }

.credentials { display: flex; flex-direction: column; gap: 0.85rem; }
.credential { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 13px; color: #1a1c1e; opacity: 0.7; line-height: 1.5; }
.credential::before { content: ''; width: 20px; min-width: 20px; height: 1px; background: #c17f3a; margin-top: 0.6rem; }

/* ==========================================
   LOGO SCROLL STRIP
   ========================================== */

.logos {
  background: #ffffff;
  padding: 2.5rem 0;
  border-top: 0.5px solid rgba(26,28,30,0.08);
  border-bottom: 0.5px solid rgba(26,28,30,0.08);
  overflow: hidden;
}

.logos-label { text-align: center; font-size: 10px; letter-spacing: 4px; color: #1a1c1e; opacity: 0.35; font-weight: 500; margin-bottom: 1.5rem; }
.logos-track { display: flex; width: max-content; animation: scrolllogos 30s linear infinite; }
.logos-track:hover { animation-play-state: paused; }

@keyframes scrolllogos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2.5rem;
  height: 52px;
  border-right: 0.5px solid rgba(26,28,30,0.08);
  white-space: nowrap;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #1a1c1e;
  opacity: 0.3;
  min-width: 180px;
}

/* ==========================================
   CTA BLOCK
   ========================================== */

.cta {
  background: #1a1c1e;
  padding: 4rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  position: relative;
}

.cta::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: #c17f3a; }

.cta-h { font-family: 'Cormorant Garamond', serif; font-size: 38px; font-weight: 300; color: #f5f0e8; max-width: 500px; line-height: 1.2; }
.cta-h em { font-style: italic; color: #c17f3a; }
.cta-p { font-size: 14px; line-height: 1.75; color: #f5f0e8; opacity: 0.55; margin-top: 0.75rem; max-width: 480px; }

/* ==========================================
   BUTTONS
   ========================================== */

.btn-amber {
  background: #c17f3a;
  color: #f5f0e8;
  padding: 0.9rem 2.2rem;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  transition: background 0.2s;
  font-family: 'DM Sans', sans-serif;
}

.btn-amber:hover { background: #a86d2f; }

.btn-amber-full {
  background: #c17f3a;
  color: #f5f0e8;
  padding: 0.9rem 2rem;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: block;
  text-align: center;
  width: 100%;
  transition: background 0.2s;
  font-family: 'DM Sans', sans-serif;
  margin-top: 1.5rem;
}

.btn-amber-full:hover { background: #a86d2f; }

.btn-ghost {
  background: transparent;
  color: #f5f0e8;
  padding: 0.9rem 0;
  font-size: 12px;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  opacity: 0.6;
  text-decoration: underline;
  text-underline-offset: 4px;
  font-family: 'DM Sans', sans-serif;
}

/* ==========================================
   SERVICES FULL PAGE
   ========================================== */

.services-full { background: #ffffff; padding: 4rem 2.5rem; }
.services-intro { font-size: 15px; line-height: 1.8; color: #1a1c1e; opacity: 0.65; max-width: 680px; margin-bottom: 3rem; }

.service-full-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(26,28,30,0.08); }
.service-full-card { background: #ffffff; padding: 2.5rem; }

.service-full-header { display: flex; align-items: flex-start; gap: 1.25rem; margin-bottom: 1.25rem; }
.service-tagline { font-size: 11px; letter-spacing: 2px; color: #c17f3a; font-weight: 500; margin-top: 0.25rem; }
.service-full-desc { font-size: 14px; line-height: 1.8; color: #1a1c1e; opacity: 0.65; margin-bottom: 1.25rem; }

.service-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.service-list li { font-size: 13px; color: #1a1c1e; opacity: 0.7; display: flex; align-items: center; gap: 0.75rem; }
.service-list li::before { content: ''; width: 16px; min-width: 16px; height: 1px; background: #c17f3a; }

/* ==========================================
   PRICING
   ========================================== */

.pricing { background: #f5f0e8; padding: 4rem 2.5rem; border-top: 0.5px solid rgba(26,28,30,0.08); }

.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(26,28,30,0.12); margin-bottom: 1px; }

.pricing-card { background: #f5f0e8; padding: 2.5rem; position: relative; }
.pricing-featured { background: #1a1c1e; }

.pricing-popular {
  font-size: 9px;
  letter-spacing: 3px;
  color: #c17f3a;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.pricing-tier { font-size: 11px; letter-spacing: 4px; font-weight: 600; color: #1a1c1e; margin-bottom: 1rem; }
.pricing-featured .pricing-tier { color: #f5f0e8; }
.pricing-featured .pricing-popular { color: #c17f3a; }

.pricing-price { font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 300; color: #c17f3a; line-height: 1; margin-bottom: 0.5rem; }
.pricing-price span { font-size: 16px; opacity: 0.6; }

.pricing-desc { font-size: 13px; color: #1a1c1e; opacity: 0.6; margin-bottom: 1.5rem; line-height: 1.5; }
.pricing-featured .pricing-desc { color: #f5f0e8; opacity: 0.55; }

.pricing-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1rem; }
.pricing-list li { font-size: 13px; color: #1a1c1e; opacity: 0.7; display: flex; align-items: flex-start; gap: 0.75rem; line-height: 1.5; }
.pricing-list li::before { content: ''; width: 16px; min-width: 16px; height: 1px; background: #c17f3a; margin-top: 0.6rem; }
.pricing-featured .pricing-list li { color: #f5f0e8; }

.diagnostic-card {
  background: #1a1c1e;
  padding: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  border-top: 1px solid rgba(26,28,30,0.12);
}

.diagnostic-card .pricing-tier { color: #f5f0e8; }
.diagnostic-card .pricing-price { color: #c17f3a; }
.diagnostic-card .service-full-desc { color: #f5f0e8; opacity: 0.55; max-width: 580px; margin: 0.5rem 0 0; }

/* ==========================================
   ABOUT FULL PAGE
   ========================================== */

.about-full {
  background: #ffffff;
  padding: 4rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-ethos { margin-top: 2rem; padding-top: 2rem; border-top: 0.5px solid rgba(26,28,30,0.1); }

.ethos-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1rem; }
.ethos-list li { font-size: 14px; color: #1a1c1e; opacity: 0.7; display: flex; align-items: center; gap: 0.75rem; }
.ethos-list li::before { content: ''; width: 20px; min-width: 20px; height: 1px; background: #c17f3a; }

/* ==========================================
   CONTACT PAGE
   ========================================== */

.contact-section {
  background: #ffffff;
  padding: 4rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-steps { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 1.5rem; }

.contact-step { display: flex; gap: 1.25rem; align-items: flex-start; }
.step-num { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 300; color: #c17f3a; line-height: 1; min-width: 40px; }
.step-title { font-size: 14px; font-weight: 600; color: #1a1c1e; margin-bottom: 0.3rem; }
.step-desc { font-size: 13px; line-height: 1.7; color: #1a1c1e; opacity: 0.6; }

.contact-detail { font-size: 14px; color: #1a1c1e; opacity: 0.75; margin-bottom: 0.5rem; }

.contact-form-wrap { background: #f5f0e8; padding: 2.5rem; }
.form-title { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300; color: #1a1c1e; margin: 0.5rem 0; }
.form-note { font-size: 13px; color: #1a1c1e; opacity: 0.55; margin-bottom: 1.5rem; line-height: 1.6; }

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 11px; letter-spacing: 2px; font-weight: 600; color: #1a1c1e; opacity: 0.6; }
.form-group input, .form-group textarea {
  background: #ffffff;
  border: 0.5px solid rgba(26,28,30,0.2);
  padding: 0.8rem 1rem;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: #1a1c1e;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus { border-color: #c17f3a; }
.form-group textarea { resize: vertical; }
.form-small { font-size: 11px; color: #1a1c1e; opacity: 0.45; line-height: 1.6; margin-top: 0.5rem; }

/* ==========================================
   FOOTER
   ========================================== */

footer {
  background: #1a1c1e;
  padding: 2.5rem 2.5rem 2rem;
  border-top: 0.5px solid rgba(255,255,255,0.08);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem 3rem;
  align-items: start;
}

.footer-copy { font-size: 12px; color: #f5f0e8; opacity: 0.4; letter-spacing: 0.5px; line-height: 1.6; align-self: center; }
.footer-links { display: flex; gap: 1.5rem; list-style: none; align-self: center; justify-content: flex-end; }
.footer-links a { font-size: 11px; color: #f5f0e8; opacity: 0.35; text-decoration: none; letter-spacing: 1px; transition: opacity 0.2s; }
.footer-links a:hover { opacity: 0.7; }
.footer-legal { font-size: 10px; color: #f5f0e8; opacity: 0.25; letter-spacing: 0.5px; grid-column: 1 / -1; border-top: 0.5px solid rgba(255,255,255,0.06); padding-top: 1rem; margin-top: 0.5rem; }
.footer-legal a { color: #f5f0e8; opacity: 0.4; }

/* ==========================================
   MOBILE RESPONSIVE — max 768px
   ========================================== */

@media (max-width: 768px) {

  /* NAV */
  nav {
    padding: 1.2rem 1.5rem;
    flex-wrap: nowrap;
    gap: 1rem;
  }

  .nav-links {
    gap: 1rem;
  }

  .nav-links li:nth-child(1),
  .nav-links li:nth-child(2) {
    display: none;
  }

  .nav-cta {
    padding: 0.5rem 1rem !important;
    font-size: 11px !important;
    letter-spacing: 1px !important;
    white-space: nowrap;
  }

  .logo-text { font-size: 18px; letter-spacing: 4px; }

  /* VIDEO HERO */
  .video-hero { height: 100vh; max-height: 680px; }

  .video-h1 { font-size: 38px; }
  .video-p { font-size: 14px; }

  .video-btns {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .btn-amber {
    text-align: center;
    padding: 1rem 1.5rem;
  }

  .btn-ghost {
    text-align: center;
  }

  /* STATS */
  .stats {
    grid-template-columns: 1fr 1fr;
  }

  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3) { border-top: 0.5px solid rgba(26,28,30,0.12); }
  .stat { padding: 1.5rem; }
  .stat-num { font-size: 32px; }

  /* SERVICES HOME */
  .services { padding: 3rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .section-h2 { font-size: 28px; margin-bottom: 1.5rem; }

  /* ABOUT STRIP HOME */
  .about-strip {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 1.5rem;
  }

  /* LOGOS */
  .logos { padding: 2rem 0; }

  /* CTA BLOCK */
  .cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 3rem 1.5rem;
    gap: 2rem;
  }

  .cta-h { font-size: 28px; }
  .cta-left { max-width: 100%; }

  .btn-amber.cta-btn {
    width: 100%;
    text-align: center;
  }

  /* PAGE HERO */
  .page-hero { padding: 3rem 1.5rem; }
  .page-h1 { font-size: 36px; }

  /* SERVICES FULL PAGE */
  .services-full { padding: 3rem 1.5rem; }
  .service-full-grid { grid-template-columns: 1fr; }

  /* PRICING */
  .pricing { padding: 3rem 1.5rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 2rem; }

  .diagnostic-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
  }

  .diagnostic-card .btn-amber {
    width: 100%;
    text-align: center;
  }

  /* ABOUT FULL */
  .about-full {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3rem 1.5rem;
  }

  /* CONTACT */
  .contact-section {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3rem 1.5rem;
  }

  .contact-form-wrap { padding: 1.75rem; }

  /* FOOTER */
  footer {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 2rem 1.5rem;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-legal { margin-top: 0; }

}

/* SMALL PHONES — max 390px */
@media (max-width: 390px) {
  .video-h1 { font-size: 32px; }
  .stat-num { font-size: 28px; }
  .cta-h { font-size: 26px; }
  .page-h1 { font-size: 30px; }
}
