/* ============================================================
   ETHICAL FINANCE BROKER — Main Stylesheet
   Author: Static rebuild for Netlify
   Fonts: League Spartan (headings), Quicksand (body)
   Breakpoints: mobile < 600px | tablet < 900px | desktop 900px+
   ============================================================ */


/* ============================================================
   1. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ============================================================ */

:root {
  /* Brand colours */
  --color-hero-blue:    #009BD5;
  --color-bright-blue:  #25A9E0;
  --color-navy:         #1C244B;
  --color-green:        #28A745;
  --color-grey-light:   #F1F1F1;
  --color-grey-mid:     #DDDDDD;
  --color-grey-text:    #555555;
  --color-white:        #FFFFFF;
  --color-black:        #111111;

  /* Typography */
  --font-heading: 'League Spartan', sans-serif;
  --font-body:    'Quicksand', sans-serif;

  /* Spacing scale */
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   1.5rem;
  --space-lg:   2.5rem;
  --space-xl:   4rem;
  --space-2xl:  6rem;

  /* Layout */
  --container-max:  1200px;
  --container-pad:  1.5rem;
  --border-radius:  8px;
  --border-radius-lg: 16px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;

  /* Shadows */
  --shadow-sm:  0 1px 4px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.12);
}


/* ============================================================
   2. RESET & BASE
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-navy);
  background-color: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul {
  list-style: none;
}

address {
  font-style: normal;
}

/* Screen-reader only utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}


/* ============================================================
   3. LAYOUT UTILITIES
   ============================================================ */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}


/* ============================================================
   4. BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.65em 1.4em;
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  cursor: pointer;
  border: none;
  transition: opacity var(--transition-fast), transform var(--transition-fast), background-color var(--transition-fast);
  white-space: nowrap;
  text-decoration: none;
}

.btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  text-decoration: none;
}

.btn:active {
  transform: translateY(0);
}

/* Inquire button — top nav */
.btn-inquire {
  background-color: var(--color-bright-blue);
  color: var(--color-white);
  font-size: 0.95rem;
  padding: 0.55em 1.3em;
}

/* Call Now — green CTA */
.btn-call {
  background-color: var(--color-green);
  color: var(--color-white);
  font-size: 1.05rem;
  padding: 0.75em 1.75em;
}

/* Call button variant on white bg */
.btn-call--dark {
  background-color: var(--color-navy);
}

/* Reviews link button */
.btn-reviews {
  background-color: var(--color-navy);
  color: var(--color-white);
  margin-bottom: var(--space-lg);
}

/* Form submit */
.btn-submit {
  background-color: var(--color-bright-blue);
  color: var(--color-white);
  font-size: 1rem;
  padding: 0.75em 2.5em;
  width: 100%;
  justify-content: center;
}

@media (min-width: 600px) {
  .btn-submit {
    width: auto;
  }
}

.btn-icon {
  font-size: 0.9em;
}


/* ============================================================
   5. HEADER & NAVIGATION
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: var(--space-sm);
}

/* Logo */
.logo-link {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo {
  height: 52px;
  width: auto;
}

/* Nav list */
.main-nav {
  flex: 1;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-navy);
  transition: color var(--transition-fast);
  text-decoration: none;
}

.nav-link:hover {
  color: var(--color-hero-blue);
  text-decoration: none;
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}

.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-navy);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

/* Hamburger → X animation */
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Responsive nav */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background-color: var(--color-white);
    box-shadow: var(--shadow-md);
    padding: var(--space-md) var(--container-pad);
    z-index: 99;
  }

  .main-nav.is-open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }

  .nav-link {
    font-size: 1.05rem;
    padding: 0.3em 0;
  }
}


/* ============================================================
   6. HERO SECTION
   ============================================================ */

.hero {
  background-color: var(--color-hero-blue);
  padding: var(--space-xl) 0;
  color: var(--color-white);
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

/* Heading */
.hero-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.hero-phone {
  color: var(--color-white);
  text-decoration: none;
  white-space: nowrap;
}

.hero-phone:hover {
  text-decoration: underline;
}

/* Sub-heading */
.hero-subheading {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

/* Small supporting text */
.hero-small {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--space-md);
}

/* Trust bar */
.hero-trust {
  text-align: center;
}

.trust-label {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--space-sm);
  font-weight: 500;
}

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.trust-logo {
  max-height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.trust-logo:hover {
  opacity: 1;
}

@media (min-width: 900px) {
  .hero-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-content {
    max-width: 640px;
  }

  .hero-trust {
    flex-shrink: 0;
    text-align: center;
  }
}


/* ============================================================
   7. LOAN TYPES SECTION
   ============================================================ */

.loan-types {
  padding: var(--space-xl) 0;
  background-color: var(--color-white);
  border-top: 1px solid var(--color-grey-mid);
}

.loan-types-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-grey-text);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-xs);
}

.loan-types-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--color-navy);
  text-align: center;
  margin-bottom: var(--space-lg);
}

.loan-types-note--bottom {
  margin-top: var(--space-lg);
}

.loan-types-heading--sub {
  margin-top: var(--space-xs);
  font-size: 1.3rem;
  color: var(--color-grey-text);
}

/* Grid of loan type icons */
.loan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  max-width: 800px;
  margin: 0 auto;
}

.loan-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm);
  border-radius: var(--border-radius-lg);
  border: 2px solid transparent;
  transition: border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-base);
  cursor: pointer;
  text-decoration: none;
}

.loan-item:hover {
  border-color: var(--color-hero-blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  text-decoration: none;
}

.loan-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.loan-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-navy);
  text-align: center;
}

@media (max-width: 599px) {
  .loan-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }

  .loan-icon {
    width: 80px;
    height: 80px;
  }
}

@media (min-width: 900px) {
  .loan-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}


/* ============================================================
   8. GOOGLE REVIEWS SECTION
   ============================================================ */

.reviews {
  padding: var(--space-xl) 0;
  background-color: var(--color-white);
  border-top: 1px solid var(--color-grey-mid);
}

.reviews-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--color-navy);
  text-align: center;
  margin-bottom: var(--space-md);
}

/* Summary badge row */
.reviews-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.reviews-badge-img {
  max-width: 260px;
  height: auto;
}

.reviews-meta {
  text-align: center;
}

.reviews-business {
  display: block;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-navy);
  margin-bottom: 0.25em;
}

.reviews-stars {
  font-size: 1.6rem;
  color: #F5A623;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 0.15em;
}

.reviews-score {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-navy);
}

.reviews-count {
  display: block;
  font-size: 0.85rem;
  color: var(--color-grey-text);
  margin-bottom: 0.5em;
}

.reviews-write-link {
  font-size: 0.85rem;
  color: var(--color-hero-blue);
  font-weight: 600;
  text-decoration: underline;
}

@media (min-width: 600px) {
  .reviews-summary {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .reviews-meta {
    text-align: left;
  }
}

/* Review carousel */
.review-carousel {
  position: relative;
  overflow: hidden;
}

.review-track {
  display: flex;
  gap: var(--space-md);
  transition: transform var(--transition-base);
}

.review-card {
  min-width: 280px;
  flex: 0 0 280px;
  background: var(--color-white);
  border: 1px solid var(--color-grey-mid);
  border-radius: var(--border-radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
}

@media (min-width: 600px) {
  .review-card {
    min-width: 320px;
    flex: 0 0 320px;
  }
}

@media (min-width: 1000px) {
  .review-card {
    min-width: 360px;
    flex: 0 0 360px;
  }
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
}

.review-avatar-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-hero-blue);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.review-name {
  display: block;
  font-size: 0.95rem;
  color: var(--color-navy);
}

.review-date {
  display: block;
  font-size: 0.78rem;
  color: var(--color-grey-text);
}

.review-stars {
  font-size: 1rem;
  color: #F5A623;
  margin-bottom: 0.5em;
}

.review-text {
  font-size: 0.9rem;
  color: var(--color-grey-text);
  line-height: 1.55;
}

/* Carousel controls */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.carousel-btn {
  background: var(--color-navy);
  color: var(--color-white);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition-fast), opacity var(--transition-fast);
  flex-shrink: 0;
}

.carousel-btn:hover {
  background-color: var(--color-hero-blue);
}

.carousel-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.carousel-dots {
  display: flex;
  gap: 0.4em;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-grey-mid);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background-color var(--transition-fast);
}

.carousel-dot.is-active,
.carousel-dot:hover {
  background-color: var(--color-hero-blue);
}


/* ============================================================
   9. CALL ASSISTANT ANYTIME SECTION
   ============================================================ */

.call-assistant {
  padding: var(--space-xl) 0;
  background-color: var(--color-grey-light);
  border-top: 1px solid var(--color-grey-mid);
}

.call-assistant-inner {
  max-width: 720px;
}

.call-assistant-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: var(--space-md);
}

.call-assistant-content p {
  font-size: 1rem;
  color: var(--color-navy);
  margin-bottom: var(--space-sm);
  line-height: 1.7;
}

.call-assistant-content p:last-of-type {
  margin-bottom: var(--space-lg);
}

.call-assistant-content strong {
  font-weight: 700;
}


/* ============================================================
   10. LENDERS SECTION
   ============================================================ */

.lenders {
  padding: var(--space-xl) 0;
  background-color: var(--color-white);
  border-top: 1px solid var(--color-grey-mid);
}

.lenders-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  font-weight: 700;
  color: var(--color-navy);
  text-align: center;
  margin-bottom: 0.5em;
}

.lenders-subheading {
  font-size: 0.95rem;
  color: var(--color-grey-text);
  text-align: center;
  margin-bottom: var(--space-xl);
  font-weight: 500;
}

/* Grid: 2 columns mobile → 4 tablet → 6 desktop */
.lenders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--color-grey-mid);
  border-radius: var(--border-radius);
  overflow: hidden;
}

@media (min-width: 600px) {
  .lenders-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 900px) {
  .lenders-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* Each cell */
.lender-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1rem;
  background-color: var(--color-white);
  border: 1px solid var(--color-grey-mid);
  min-height: 90px;
}

/* Logo image */
.lender-logo {
  display: block;
  max-width: 110px;
  max-height: 50px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.72;
  /* Grey background acts as placeholder until real logos are supplied */
  background-color: var(--color-grey-light);
  min-width: 80px;
  min-height: 40px;
  border-radius: 4px;
}


/* ============================================================
   11. CONTACT FORM SECTION
   ============================================================ */

.contact-form-section {
  padding: var(--space-xl) 0;
  background-color: var(--color-grey-light);
  border-top: 1px solid var(--color-grey-mid);
}

.contact-form-inner {
  max-width: 760px;
}

.contact-form-header {
  margin-bottom: var(--space-lg);
}

.contact-form-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 0.35em;
}

.contact-form-subheading {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-grey-text);
  font-weight: 600;
}

/* Form layout */
.contact-form {
  background-color: var(--color-white);
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

@media (min-width: 600px) {
  .form-row--two {
    flex-direction: row;
  }

  .form-row--two .form-group {
    flex: 1;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35em;
  margin-bottom: var(--space-sm);
}

.form-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-navy);
}

.required {
  color: #C0392B;
}

.form-input {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-navy);
  background-color: var(--color-white);
  border: 1.5px solid var(--color-grey-mid);
  border-radius: var(--border-radius);
  padding: 0.65em 0.9em;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  width: 100%;
  line-height: 1.4;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-hero-blue);
  box-shadow: 0 0 0 3px rgba(0,155,213,0.15);
}

.form-input::placeholder {
  color: #AAA;
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
}

.char-count {
  font-size: 0.78rem;
  color: var(--color-grey-text);
  text-align: right;
  display: block;
  margin-top: 0.25em;
}

.form-submit {
  margin-top: var(--space-md);
}


/* ============================================================
   12. ABOUT ERIC / BACKGROUND SECTION
   ============================================================ */

.about-eric {
  padding: var(--space-xl) 0;
  background-color: var(--color-bright-blue);
  color: var(--color-white);
}

.about-eric-inner {
  max-width: 760px;
}

.about-eric-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.about-eric-subheading {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--space-sm);
}

.about-eric-content p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.92);
  margin-bottom: var(--space-md);
}

.about-eric-motto {
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.3);
}

.motto-heading {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--color-white);
  letter-spacing: 0.03em;
  margin-bottom: 0.35em;
}

.motto-attribution {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  font-style: italic;
}


/* ============================================================
   13. PRE-FOOTER (CONTACT INFO + LINKS)
   ============================================================ */

.pre-footer {
  padding: var(--space-xl) 0;
  background-color: var(--color-navy);
  color: var(--color-white);
}

.pre-footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 700px) {
  .pre-footer-inner {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pre-footer-heading {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Social links */
.social-list {
  display: flex;
  flex-direction: column;
  gap: 0.6em;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition-fast);
  text-decoration: none;
}

.social-link:hover {
  color: var(--color-bright-blue);
  text-decoration: none;
}

/* Footer link list */
.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.footer-link {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition-fast);
  text-decoration: none;
}

.footer-link:hover {
  color: var(--color-bright-blue);
  text-decoration: none;
}

/* Contact details */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.75em;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5em;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

.contact-list li svg {
  flex-shrink: 0;
  margin-top: 0.15em;
  color: var(--color-bright-blue);
}


/* ============================================================
   14. FOOTER
   ============================================================ */

.site-footer {
  background-color: var(--color-black);
  color: rgba(255,255,255,0.6);
  padding: var(--space-lg) 0;
}

.site-footer-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.legal-details {
  font-size: 0.8rem;
}

.legal-summary {
  cursor: pointer;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  user-select: none;
  padding: 0.2em 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.4em;
}

.legal-summary::-webkit-details-marker { display: none; }

.legal-summary::before {
  content: '▸';
  font-size: 0.75em;
  transition: transform var(--transition-fast);
}

details[open] .legal-summary::before {
  transform: rotate(90deg);
}

.legal-text {
  margin-top: var(--space-xs);
  font-size: 0.78rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
  max-width: 900px;
}

.copyright {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}


/* ============================================================
   15. UTILITY: FORM VALIDATION STATES
   ============================================================ */

.form-input:invalid:not(:placeholder-shown) {
  border-color: #C0392B;
}

.form-input:valid:not(:placeholder-shown) {
  border-color: var(--color-green);
}


/* ============================================================
   16. PRINT STYLES
   ============================================================ */

@media print {
  .site-header,
  .nav-toggle,
  .carousel-controls,
  .btn-call,
  .btn-inquire {
    display: none;
  }

  body {
    font-size: 12pt;
    color: #000;
  }
}
