/* Sells Sundown Stories Website - Main Stylesheet */

:root {
  /* Color Palette - Sunset/Taupe theme */
  --taupe: #8B7D6B;
  --beige: #A39382;
  --sand: #E8DED3;
  --cream: #F5F5F5;
  --dark: #2C3E50;
  --white: #FFFFFF;
  --sunset-orange: #D4817E;
  --sunset-purple: #7B4B94;
  --gold: #DCC48E;
}

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

body {
  font-family: 'Georgia', serif;
  color: var(--dark);
  line-height: 1.6;
  background: var(--cream);
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Georgia', serif;
  color: var(--taupe);
  margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
  font-family: 'Calibri', 'Arial', sans-serif;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

/* Header / Navigation */
header {
  background: var(--taupe);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.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;
}

.logo {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo img {
  height: 90px;
  width: 90px;
  border-radius: 50%;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-family: 'Calibri', sans-serif;
  font-size: 1.1rem;
  transition: opacity 0.3s;
}

.nav-links a:hover {
  opacity: 0.8;
}

.nav-links a.active {
  text-decoration: underline;
  text-underline-offset: 0.35rem;
  text-decoration-thickness: 2px;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

.nav-toggle-bar {
  width: 18px;
  height: 2px;
  background: var(--white);
  border-radius: 20px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #8B7D6B 0%, #D4817E 50%, #7B4B94 100%);
  color: var(--white);
  padding: 1rem 1.5rem;
  text-align: center;
}

.hero h1 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--sand);
}

/* Homepage Hero */
.home-hero {
  padding: 0.75rem 1.5rem 1.25rem;
}

.home-hero .hero-logo {
  width: clamp(220px, 34vw, 320px);
  height: auto;
  aspect-ratio: 1 / 1;
  margin: 0 auto 0.35rem;
  display: block;
}

.home-hero .hero-title {
  color: var(--white);
  font-size: 1.75rem;
  margin-bottom: 0.25rem;
}

.home-hero .hero-tagline {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
  color: #F5E6D3;
  font-style: italic;
}

.home-hero .hero-location {
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  color: #E8DED3;
  font-style: normal;
}

.home-hero .hero-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.home-hero .hero-btn-primary {
  background: var(--white);
  color: var(--sunset-purple);
  font-size: 0.95rem;
  padding: 0.7rem 1.35rem;
  font-weight: bold;
}

.home-hero .hero-btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  font-size: 0.95rem;
  padding: 0.7rem 1.35rem;
}

.home-hero .hero-btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* Homepage intro between hero and story section */
.homepage-bridge {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2rem;
  padding: 1.5rem 1rem 0.25rem;
}

.homepage-bridge p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--dark);
}

.home-story-panel {
  background: linear-gradient(135deg, #F5E6D3 0%, #E8DED3 100%);
  padding: 2.75rem 2rem;
  border-radius: 15px;
  margin-bottom: 3rem;
}

.home-story-inner {
  max-width: 900px;
  margin: 0 auto;
}

.home-story-title {
  color: var(--sunset-purple);
  margin-bottom: 1.5rem;
}

.home-story-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--dark);
  margin-bottom: 1rem;
}

.home-story-text-end {
  margin-bottom: 1.5rem;
}

.home-story-quote {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--taupe);
  margin-bottom: 1rem;
  font-style: italic;
}

.home-story-embed {
  margin: 1.5rem 0;
}

.spotify-embed {
  border-radius: 12px;
}

.home-story-link {
  display: inline-block;
  color: var(--sunset-purple);
  font-weight: bold;
  text-decoration: none;
  border-bottom: 2px solid var(--sunset-purple);
  padding-bottom: 0.3rem;
  transition: all 0.3s;
}

.home-story-link:hover {
  opacity: 0.8;
}

.sundown-rotator {
  min-height: 2.5rem;
  margin-top: 0.15rem;
  margin-bottom: 0;
  color: var(--sunset-purple);
  font-style: italic;
  font-size: 1rem;
  transition: opacity 0.2s ease;
}

.sundown-rotator.is-fading {
  opacity: 0;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

/* Sections */
section {
  margin-bottom: 4rem;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.cards-grid-spaced {
  margin-bottom: 4rem;
}

.card {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  color: var(--taupe);
  margin-bottom: 1rem;
}

.service-highlight-card {
  border: 3px solid var(--sunset-purple);
  background: linear-gradient(135deg, rgba(139,125,107,0.05) 0%, rgba(123,75,148,0.05) 100%);
}

.service-highlight-lead {
  font-weight: bold;
  color: var(--sunset-purple);
  margin-bottom: 0.5rem;
}

/* Buttons */
.btn {
  display: inline-block;
  background: var(--taupe);
  color: var(--white);
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 5px;
  font-family: 'Calibri', sans-serif;
  font-size: 1.1rem;
  transition: background 0.3s;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--beige);
}

.btn-secondary {
  background: var(--sand);
  color: var(--dark);
}

.btn-secondary:hover {
  background: var(--beige);
}

/* Portfolio Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.portfolio-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.portfolio-item h3 {
  color: var(--sunset-purple);
  margin-bottom: 0.5rem;
}

.portfolio-item .subtitle {
  color: var(--taupe);
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 1rem;
}

.portfolio-intro-text {
  margin-bottom: 2rem;
  max-width: 800px;
  font-size: 1.05rem;
}

.portfolio-story-text {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.portfolio-story-text-end {
  margin-bottom: 1.5rem;
}

.portfolio-list {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.portfolio-list-end {
  margin-bottom: 1.5rem;
}

.portfolio-link-row {
  margin-top: 1rem;
}

.portfolio-link {
  color: var(--sunset-purple);
  font-weight: bold;
}

.portfolio-experience-intro {
  margin-bottom: 2rem;
}

.portfolio-cta-text {
  max-width: 600px;
  margin: 0 auto 2rem;
}

.over-name-list {
  font-size: 1.1rem;
  margin-left: 2rem;
  margin-bottom: 2rem;
}

.over-story-box {
  background: var(--sand);
  padding: 2rem;
  border-radius: 10px;
  margin: 2rem 0;
}

.over-story-title {
  color: var(--sunset-purple);
}

.over-story-embed {
  margin: 1.5rem 0;
}

.over-story-quote {
  font-style: italic;
  color: var(--taupe);
}

.over-profile-row {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.over-profile-image {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 34%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.over-profile-content {
  flex: 1;
  min-width: 300px;
}

.over-profile-lead {
  font-size: 1.2rem;
}

.over-cta-text {
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Services Section */
.service-box {
  background: var(--sand);
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.service-box h3 {
  color: var(--sunset-purple);
}

.price {
  color: var(--taupe);
  font-weight: bold;
  font-size: 1.2rem;
  margin-top: 1rem;
}

.services-intro {
  text-align: center;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: var(--dark);
}

.service-box-premium {
  border: 3px solid var(--sunset-purple);
  background: linear-gradient(135deg, rgba(139,125,107,0.05) 0%, rgba(123,75,148,0.05) 100%);
}

.service-box-geo {
  border: 3px solid var(--sunset-purple);
  background: linear-gradient(135deg, rgba(139,125,107,0.05) 0%, rgba(212,129,126,0.05) 50%, rgba(123,75,148,0.05) 100%);
}

.service-tagline {
  font-style: italic;
  margin-bottom: 1rem;
}

.service-tagline-premium {
  color: var(--sunset-purple);
  font-size: 1.1rem;
  font-weight: bold;
}

.service-tagline-muted {
  color: var(--taupe);
}

.service-text-block {
  margin: 1.5rem 0;
}

.service-detail-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.service-detail-card-sand {
  background: var(--sand);
}

.service-card-title {
  color: var(--dark);
  margin-bottom: 1rem;
}

.service-card-title-purple {
  color: var(--sunset-purple);
}

.service-list {
  margin-left: 1.5rem;
  line-height: 1.8;
}

.service-list-loose {
  line-height: 2;
}

.service-list-end {
  margin-bottom: 1.5rem;
}

.service-focus-note {
  background: #F5E6D3;
  padding: 1rem;
  border-radius: 8px;
  margin: 1rem 0;
  font-size: 0.95rem;
}

.service-meta-note {
  font-size: 0.95rem;
  color: var(--taupe);
}

.service-item-block {
  margin: 1.5rem 0;
}

.service-small-note {
  font-size: 0.95rem;
  color: var(--taupe);
  margin-top: 0.5rem;
}

.geo-alert-box {
  background: var(--sunset-purple);
  color: var(--white);
  padding: 1.5rem;
  border-radius: 10px;
  margin: 1.5rem 0;
}

.geo-alert-line {
  color: var(--white);
  margin-bottom: 1rem;
}

.geo-alert-line-last {
  margin-bottom: 0;
}

.geo-example-box {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
  border-left: 4px solid var(--sunset-purple);
}

.geo-example-line {
  margin-top: 0.5rem;
  font-style: italic;
}

.geo-example-result {
  margin-top: 0.5rem;
  color: var(--sunset-purple);
}

.process-panel {
  background: var(--sand);
  padding: 2rem;
  border-radius: 10px;
}

.process-title {
  color: var(--sunset-purple);
  margin-bottom: 1.5rem;
  text-align: center;
}

.process-steps {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.process-step {
  flex: 1;
  min-width: 150px;
  text-align: center;
}

.process-step-label {
  background: var(--white);
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

.process-step-label-text {
  font-weight: bold;
  color: var(--sunset-purple);
  margin: 0;
}

.process-step-desc {
  font-size: 0.9rem;
  margin: 0;
  color: var(--dark);
}

.process-arrow {
  font-size: 1.5rem;
  color: var(--sunset-purple);
  margin: 0;
}

.services-cta-panel {
  background: linear-gradient(135deg, #8B7D6B 0%, #D4817E 50%, #7B4B94 100%);
  padding: 3rem;
  border-radius: 10px;
  color: var(--white);
}

.services-cta-panel h2 {
  color: var(--white);
}

.services-cta-text {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  color: #E8DED3;
}

.services-cta-btn {
  background: var(--white);
  color: var(--sunset-purple);
  font-weight: bold;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 2rem auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--taupe);
  font-weight: bold;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--sand);
  border-radius: 5px;
  font-family: 'Calibri', sans-serif;
  font-size: 1rem;
}

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

.form-select {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--sand);
  border-radius: 5px;
  font-family: 'Calibri', sans-serif;
  font-size: 1rem;
}

.honeypot-field {
  display: none;
}

.contact-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.contact-submit-wrap {
  text-align: center;
}

.contact-direct-box {
  background: var(--sand);
  padding: 3rem;
  border-radius: 10px;
  text-align: center;
}

.contact-email-line {
  font-size: 1.2rem;
  margin: 1rem 0;
}

.contact-email-link {
  color: var(--sunset-purple);
  text-decoration: none;
  font-weight: bold;
}

.contact-direct-copy {
  color: var(--taupe);
}

.home-cta-panel {
  background: linear-gradient(135deg, #7B4B94 0%, #D4817E 100%);
  padding: 3rem;
  border-radius: 10px;
  color: var(--white);
}

.home-cta-panel h2 {
  color: var(--white);
}

.home-cta-panel p {
  color: #F5E6D3;
  font-size: 1.2rem;
}

.home-cta-btn {
  background: var(--white);
  color: var(--sunset-purple);
  margin-top: 1rem;
}

/* FAQ */
.faq-list {
  max-width: 900px;
  margin: 2rem auto 0;
  display: grid;
  gap: 1rem;
}

.faq-item {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.08);
  border: 1px solid rgba(139, 125, 107, 0.2);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.25rem;
  font-family: 'Georgia', serif;
  font-size: 1.12rem;
  color: var(--taupe);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.faq-item summary::after {
  content: "+";
  font-family: 'Calibri', sans-serif;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--sunset-purple);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 1.25rem 1.1rem;
  font-size: 1rem;
  color: var(--dark);
}

.quiz-match-note {
  background: rgba(123, 75, 148, 0.08);
  border-left: 4px solid var(--sunset-purple);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  margin-top: 1rem;
  color: var(--dark);
  font-size: 0.95rem;
}

/* Footer */
footer {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 2rem;
  margin-top: 4rem;
}

footer a {
  color: var(--gold);
  text-decoration: none;
}

/* Scroll reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.mobile-sticky-cta {
  display: none;
}

.modal-open {
  overflow: hidden;
}

/* Homepage quiz popup */
.quiz-popup-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(44, 62, 80, 0.58);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 220;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.quiz-popup-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.quiz-popup {
  position: relative;
  width: min(100%, 540px);
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(44, 62, 80, 0.26);
  padding: 1.4rem 1.3rem 1.2rem;
  transform: translateY(18px);
  transition: transform 0.24s ease;
}

.quiz-popup-backdrop.is-visible .quiz-popup {
  transform: translateY(0);
}

.quiz-popup-close {
  position: absolute;
  top: 0.6rem;
  right: 0.7rem;
  border: 0;
  background: transparent;
  font-size: 1.8rem;
  color: var(--taupe);
  cursor: pointer;
  line-height: 1;
}

.quiz-popup-kicker {
  margin: 0 0 0.2rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sunset-purple);
}

.quiz-popup h3 {
  color: var(--sunset-purple);
  margin-bottom: 0.55rem;
}

.quiz-popup p {
  color: var(--dark);
  margin-bottom: 0.8rem;
}

.quiz-popup .btn {
  text-align: center;
  padding: 0.8rem 1rem;
}

.quiz-popup-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.quiz-popup-muted {
  margin-top: 0.75rem;
  border: 0;
  background: transparent;
  color: var(--taupe);
  text-decoration: underline;
  cursor: pointer;
  font-size: 0.92rem;
}

/* Responsive */
@media (max-width: 768px) {
  nav {
    padding: 0 1rem;
    flex-wrap: wrap;
    row-gap: 0.75rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .js-enabled .nav-links {
    width: 100%;
    flex-direction: column;
    gap: 0.85rem;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.25s ease, opacity 0.2s ease;
  }

  .js-enabled .nav-links.is-open {
    max-height: 22rem;
    opacity: 1;
    pointer-events: auto;
    padding-bottom: 0.5rem;
  }

  .menu-open {
    overflow: hidden;
  }

  .nav-links {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1.2rem;
  }

  .home-hero {
    padding: 0.5rem 1rem 1rem;
  }

  .home-hero .hero-logo {
    width: min(72vw, 260px);
    height: auto;
    margin-bottom: 0.25rem;
  }

  .home-hero .hero-title {
    font-size: 1.45rem;
  }

  .home-hero .hero-tagline {
    font-size: 0.95rem;
  }

  .home-hero .hero-location {
    font-size: 0.82rem;
  }

  .home-hero .hero-btn-primary,
  .home-hero .hero-btn-outline {
    font-size: 0.9rem;
    padding: 0.65rem 1.1rem;
  }

  .homepage-bridge {
    padding: 1rem 0.35rem 0;
    margin-bottom: 1.5rem;
  }

  .sundown-rotator {
    min-height: 2.8rem;
    font-size: 0.95rem;
  }

  .home-story-panel {
    padding: 2rem 1.15rem;
    margin-bottom: 2.2rem;
  }

  .home-story-text,
  .home-story-quote {
    font-size: 1rem;
  }

  .contact-direct-box {
    padding: 2rem 1.25rem;
  }

  .over-story-box {
    padding: 1.5rem 1rem;
  }

  .over-profile-image {
    width: min(72vw, 260px);
    height: min(72vw, 260px);
  }

  .over-profile-content {
    min-width: 0;
  }

  .services-intro {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .service-box {
    padding: 1.35rem 1rem;
  }

  .service-detail-card,
  .geo-alert-box,
  .geo-example-box,
  .process-panel {
    padding: 1rem;
  }

  .service-text-block,
  .service-item-block {
    margin: 1.1rem 0;
  }

  .service-list {
    margin-left: 1.1rem;
  }

  .process-steps {
    gap: 0.75rem;
  }

  .process-arrow {
    width: 100%;
    text-align: center;
    transform: rotate(90deg);
  }

  .services-cta-panel {
    padding: 2rem 1.2rem;
  }

  .services-cta-text {
    font-size: 1rem;
  }

  .mobile-sticky-cta {
    display: block;
    position: fixed;
    left: 50%;
    bottom: 0.85rem;
    transform: translateX(-50%);
    z-index: 150;
    padding: 0.85rem 1.3rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #7B4B94 0%, #D4817E 100%);
    color: var(--white);
    text-decoration: none;
    font-weight: bold;
    font-family: 'Calibri', sans-serif;
    box-shadow: 0 10px 24px rgba(44, 62, 80, 0.25);
  }

  body {
    padding-bottom: 4.75rem;
  }

  .quiz-popup {
    padding: 1.15rem 1rem 1rem;
  }

  .quiz-popup-actions {
    grid-template-columns: 1fr;
  }
  
  .cards {
    grid-template-columns: 1fr;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

/* Utility Classes */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .sundown-rotator {
    transition: none;
  }

  .quiz-popup-backdrop,
  .quiz-popup {
    transition: none;
  }
}
