/* ==========================================================================
   Base + Theme
   ========================================================================== */
   *,
   *::before,
   *::after {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
   }
   
   :root {
     --shuptrine-blue: #8BA9B5;
     --shuptrine-blue-light: #B5CDD6;
     --shuptrine-blue-dark: #5A7A87;
     --cream: #FAF8F5;
     --warm-gray: #E8E4DF;
     --text-dark: #3A3632;
     --text-muted: #7A756E;
     --warm-brown: #A89080;
   }
   
   html, body {
     height: 100%;
     scroll-behavior: smooth;
   }
   
   body {
     font-family: 'Lato', sans-serif;
     background: var(--cream);
     color: var(--text-dark);
     min-height: 100vh;
     line-height: 1.5;
   }
   
   img {
     max-width: 100%;
     display: block;
   }
   
   a {
     color: inherit;
     text-decoration: none;
   }
   
   /* ==========================================================================
      Layout
      ========================================================================== */
   .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 80px 40px;
   }
   
   .container-narrow {
     max-width: 700px;
     margin: 0 auto;
     padding: 60px 40px;
   }
   
   .container-wide {
     max-width: 1400px;
     margin: 0 auto;
     padding: 60px 40px;
   }
   
   .section {
     margin-bottom: 100px;
   }
   
   /* ==========================================================================
      Header / Nav
      ========================================================================== */
   header.header,
   header.site-header {
     height: 70px;
     background: white;
     border-bottom: 1px solid var(--warm-gray);
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 0 30px;
     box-shadow: 0 2px 20px rgba(0,0,0,0.03);
     position: sticky;
     top: 0;
     z-index: 50;
   }
   
   .logo {
     font-family: 'Cormorant Garamond', serif;
     font-size: 28px;
     font-weight: 300;
     color: var(--shuptrine-blue);
     letter-spacing: 2px;
     text-decoration: none;
   }
   
   .logo span {
     font-size: 16px;
     color: var(--text-muted);
     font-family: 'Lato', sans-serif;
     font-weight: 300;
     margin-left: 15px;
     letter-spacing: 1px;
   }
   
   nav.site-nav,
   nav.nav {
     display: flex;
     gap: 8px;
   }
   
   /* Works for both <a> and <button> in nav */
   .site-nav a,
   .site-nav button,
   .nav a,
   .nav button {
     background: transparent;
     border: 1px solid var(--warm-gray);
     padding: 10px 20px;
     font-family: 'Lato', sans-serif;
     font-size: 13px;
     font-weight: 300;
     color: var(--text-muted);
     cursor: pointer;
     border-radius: 25px;
     transition: all 0.3s ease;
     letter-spacing: 0.5px;
     text-decoration: none;
   }
   
   .site-nav a:hover,
   .site-nav a.active,
   .site-nav button:hover,
   .nav a:hover,
   .nav a.active,
   .nav button:hover {
     border-color: var(--shuptrine-blue);
     color: var(--shuptrine-blue);
     background: rgba(139, 169, 181, 0.05);
   }
   
   .site-nav button.primary,
   .nav button.primary {
     background: var(--shuptrine-blue);
     border-color: var(--shuptrine-blue);
     color: white;
   }
   
   .site-nav button.primary:hover,
   .nav button.primary:hover {
     background: var(--shuptrine-blue-dark);
   }
   
   /* ==========================================================================
      Hero / Page Headers
      ========================================================================== */
   .hero {
     text-align: center;
     padding: 80px 40px 60px;
     background: white;
   }
   
   .hero h1 {
     font-family: 'Cormorant Garamond', serif;
     font-size: 48px;
     font-weight: 300;
     color: var(--text-dark);
     margin-bottom: 20px;
     letter-spacing: 3px;
   }
   
   .hero p {
     font-size: 16px;
     color: var(--text-muted);
     max-width: 600px;
     margin: 0 auto;
     line-height: 1.8;
   }
   
   .page-header {
     text-align: center;
     margin-bottom: 60px;
   }
   
   .page-header h1 {
     font-family: 'Cormorant Garamond', serif;
     font-size: 48px;
     font-weight: 300;
     margin-bottom: 15px;
   }
   
   .page-header p {
     font-size: 16px;
     color: var(--text-muted);
     max-width: 500px;
     margin: 0 auto;
   }
   
   .page-subtitle {
     color: var(--text-muted);
     margin-bottom: 50px;
   }
   
   /* ==========================================================================
      Buttons
      ========================================================================== */
   .btn {
     display: inline-block;
     padding: 16px 36px;
     border-radius: 30px;
     font-size: 14px;
     text-decoration: none;
     transition: all 0.3s ease;
     letter-spacing: 0.5px;
     cursor: pointer;
     border: 2px solid transparent;
   }
   
   .btn-primary {
     background: var(--shuptrine-blue);
     color: white;
     border-color: var(--shuptrine-blue);
   }
   
   .btn-primary:hover {
     background: var(--shuptrine-blue-dark);
     border-color: var(--shuptrine-blue-dark);
   }
   
   .btn-secondary {
     background: transparent;
     color: var(--text-dark);
     border-color: var(--warm-gray);
   }
   
   .btn-secondary:hover {
     border-color: var(--shuptrine-blue);
     color: var(--shuptrine-blue);
   }
   
   .btn-ghost {
     background: transparent;
     color: var(--text-dark);
     border-color: var(--warm-gray);
   }
   
   .btn-ghost:hover {
     border-color: var(--shuptrine-blue);
     color: var(--shuptrine-blue);
   }
   
   /* ==========================================================================
      About Page
      ========================================================================== */
   .about-hero {
     display: grid;
     grid-template-columns: 1fr 1.2fr;
     gap: 80px;
     align-items: start;
     margin-bottom: 100px;
   }
   
   .about-image-container {
     position: relative;
   }
   
   .about-image {
     width: 100%;
     border-radius: 16px;
     box-shadow: 0 20px 60px rgba(0,0,0,0.1);
   }
   
   .about-image-accent {
     position: absolute;
     top: -20px;
     left: -20px;
     right: 20px;
     bottom: 20px;
     border: 2px solid var(--shuptrine-blue-light);
     border-radius: 16px;
     z-index: -1;
   }
   
   .about-content h1 {
     font-family: 'Cormorant Garamond', serif;
     font-size: 56px;
     font-weight: 300;
     color: var(--text-dark);
     margin-bottom: 10px;
     letter-spacing: 2px;
   }
   
   .about-subtitle {
     font-family: 'Cormorant Garamond', serif;
     font-size: 22px;
     font-style: italic;
     color: var(--shuptrine-blue);
     margin-bottom: 40px;
   }
   
   .about-text {
     font-size: 16px;
     line-height: 2;
     color: var(--text-muted);
   }
   
   .about-text p {
     margin-bottom: 25px;
   }
   
   .about-text p:first-of-type::first-letter {
     font-family: 'Cormorant Garamond', serif;
     font-size: 72px;
     float: left;
     line-height: 0.8;
     margin-right: 12px;
     margin-top: 8px;
     color: var(--shuptrine-blue);
   }
   
   /* Quote */
   .quote-section {
     background: white;
     padding: 80px;
     border-radius: 20px;
     text-align: center;
     margin-bottom: 100px;
     box-shadow: 0 10px 40px rgba(0,0,0,0.04);
   }
   
   .quote-mark {
     font-family: 'Cormorant Garamond', serif;
     font-size: 120px;
     color: var(--shuptrine-blue-light);
     line-height: 0.5;
     margin-bottom: 20px;
   }
   
   .quote-text {
     font-family: 'Cormorant Garamond', serif;
     font-size: 32px;
     font-style: italic;
     color: var(--text-dark);
     max-width: 800px;
     margin: 0 auto 30px;
     line-height: 1.6;
   }
   
   .quote-attribution {
     font-size: 14px;
     color: var(--text-muted);
     letter-spacing: 2px;
     text-transform: uppercase;
   }
   
   /* Legacy */
   .legacy-section {
     display: grid;
     grid-template-columns: 1.2fr 1fr;
     gap: 80px;
     align-items: center;
     margin-bottom: 100px;
   }
   
   .legacy-content h2 {
     font-family: 'Cormorant Garamond', serif;
     font-size: 42px;
     font-weight: 300;
     margin-bottom: 30px;
     color: var(--text-dark);
   }
   
   .legacy-content p {
     font-size: 16px;
     line-height: 2;
     color: var(--text-muted);
     margin-bottom: 20px;
   }
   
   .legacy-image {
     width: 100%;
     border-radius: 16px;
     box-shadow: 0 20px 60px rgba(0,0,0,0.1);
   }
   
   /* Haiti */
   .haiti-section {
     background: linear-gradient(135deg, var(--shuptrine-blue-dark) 0%, var(--shuptrine-blue) 100%);
     padding: 80px;
     border-radius: 20px;
     color: white;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
     align-items: center;
   }
   
   .haiti-content h2 {
     font-family: 'Cormorant Garamond', serif;
     font-size: 42px;
     font-weight: 300;
     margin-bottom: 30px;
   }
   
   .haiti-content p {
     font-size: 16px;
     line-height: 2;
     opacity: 0.9;
     margin-bottom: 20px;
   }
   
   .haiti-link {
     display: inline-block;
     margin-top: 20px;
     padding: 14px 30px;
     background: white;
     color: var(--shuptrine-blue-dark);
     text-decoration: none;
     border-radius: 30px;
     font-size: 14px;
     transition: all 0.3s ease;
   }
   
   .haiti-link:hover {
     transform: translateY(-2px);
     box-shadow: 0 10px 30px rgba(0,0,0,0.2);
   }
   
   .haiti-images {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 15px;
   }
   
   .haiti-images img {
     width: 100%;
     border-radius: 12px;
     aspect-ratio: 1;
     object-fit: cover;
   }
   
   /* Contact */
   .contact-section {
     text-align: center;
     padding: 80px 40px;
   }
   
   .contact-section h2 {
     font-family: 'Cormorant Garamond', serif;
     font-size: 42px;
     font-weight: 300;
     margin-bottom: 20px;
   }
   
   .contact-section p {
     font-size: 16px;
     color: var(--text-muted);
     margin-bottom: 40px;
   }
   
   .contact-buttons {
     display: flex;
     gap: 15px;
     justify-content: center;
   }
   
   /* ==========================================================================
      Gallery / Artwork
      ========================================================================== */
   .filters {
     display: flex;
     justify-content: center;
     gap: 10px;
     padding: 30px;
     background: white;
     border-bottom: 1px solid var(--warm-gray);
     flex-wrap: wrap;
   }
   
   .filter-btn {
     background: transparent;
     border: 1px solid var(--warm-gray);
     padding: 10px 24px;
     font-family: 'Lato', sans-serif;
     font-size: 13px;
     font-weight: 300;
     color: var(--text-muted);
     cursor: pointer;
     border-radius: 25px;
     transition: all 0.3s ease;
     letter-spacing: 0.5px;
   }
   
   .filter-btn:hover {
     border-color: var(--shuptrine-blue-light);
     color: var(--shuptrine-blue);
   }
   
   .filter-btn.active {
     background: var(--shuptrine-blue);
     border-color: var(--shuptrine-blue);
     color: white;
   }
   
   .gallery {
     padding: 40px;
     max-width: 1600px;
     margin: 0 auto;
   }
   
   .gallery-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
     gap: 30px;
   }
   
   .artwork-card {
     background: white;
     border-radius: 16px;
     overflow: hidden;
     box-shadow: 0 4px 20px rgba(0,0,0,0.06);
     transition: all 0.4s ease;
     cursor: pointer;
     position: relative;
   }
   
   .artwork-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 12px 40px rgba(0,0,0,0.12);
   }
   
   .artwork-image {
     width: 100%;
     aspect-ratio: 4/3;
     object-fit: cover;
     display: block;
   }
   
   .artwork-info {
     padding: 25px;
   }
   
   .artwork-title {
     font-family: 'Cormorant Garamond', serif;
     font-size: 22px;
     font-weight: 400;
     color: var(--text-dark);
     margin-bottom: 8px;
   }
   
   .artwork-meta {
     font-size: 13px;
     color: var(--text-muted);
     margin-bottom: 12px;
   }
   
   .artwork-category {
     display: inline-block;
     padding: 5px 12px;
     background: var(--cream);
     border-radius: 15px;
     font-size: 11px;
     text-transform: uppercase;
     letter-spacing: 1px;
     color: var(--shuptrine-blue-dark);
   }

   .forsale-badge {
     position: absolute;
     top: 15px;
     right: 15px;
     background: var(--shuptrine-blue);
     color: white;
     padding: 8px 16px;
     border-radius: 20px;
     font-size: 14px;
     font-weight: 600;
     box-shadow: 0 2px 8px rgba(0,0,0,0.2);
     z-index: 2;
   }
   
   /* ==========================================================================
      Contact Modal
      ========================================================================== */
   .contact-modal {
     display: none;
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: rgba(0,0,0,0.75);
     z-index: 200;
     align-items: center;
     justify-content: center;
     padding: 20px;
   }

   .contact-modal.active {
     display: flex;
   }

   .contact-modal-content {
     background: white;
     border-radius: 16px;
     width: 100%;
     max-width: 600px;
     max-height: 90vh;
     overflow-y: auto;
     position: relative;
     padding: 30px;
   }

   .contact-modal-close {
     position: absolute;
     top: 15px;
     right: 15px;
     background: none;
     border: none;
     font-size: 28px;
     cursor: pointer;
     color: var(--text-muted);
     line-height: 1;
     padding: 0;
     width: 30px;
     height: 30px;
     display: flex;
     align-items: center;
     justify-content: center;
   }

   .contact-modal-close:hover {
     color: var(--text-dark);
   }

   .contact-modal h2 {
     font-family: 'Cormorant Garamond', serif;
     font-size: 28px;
     color: var(--text-dark);
     margin-bottom: 20px;
     text-align: center;
   }

   .contact-artwork-info {
     background: var(--cream);
     padding: 20px;
     border-radius: 12px;
     margin-bottom: 25px;
     border-left: 4px solid var(--shuptrine-blue);
   }

   .contact-artwork-info h3 {
     font-family: 'Cormorant Garamond', serif;
     font-size: 20px;
     margin-bottom: 8px;
     color: var(--text-dark);
   }

   .contact-artwork-info p {
     margin: 4px 0;
     color: var(--text-muted);
     font-size: 14px;
   }

   .contact-form {
     display: flex;
     flex-direction: column;
     gap: 20px;
   }

   .form-row {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 20px;
   }

   .form-group {
     display: flex;
     flex-direction: column;
   }

   .form-group label {
     font-weight: 600;
     color: var(--text-dark);
     margin-bottom: 8px;
     font-size: 14px;
   }

   .form-group input,
   .form-group textarea {
     padding: 12px 16px;
     border: 2px solid var(--warm-gray);
     border-radius: 8px;
     font-size: 16px;
     transition: border-color 0.2s;
   }

   .form-group input:focus,
   .form-group textarea:focus {
     outline: none;
     border-color: var(--shuptrine-blue);
   }

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

   .form-actions {
     display: flex;
     gap: 15px;
     justify-content: flex-end;
     margin-top: 10px;
   }

   .btn-primary, .btn-secondary {
     padding: 12px 24px;
     border-radius: 25px;
     font-size: 14px;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.2s;
     border: none;
   }

   .btn-primary {
     background: var(--shuptrine-blue);
     color: white;
   }

   .btn-primary:hover {
     background: var(--shuptrine-blue-dark);
     transform: translateY(-1px);
   }

   .btn-secondary {
     background: transparent;
     color: var(--text-muted);
     border: 2px solid var(--warm-gray);
   }

   .btn-secondary:hover {
     background: var(--warm-gray);
     color: var(--text-dark);
   }

   /* ==========================================================================
      Lightbox
      ========================================================================== */
   .lightbox {
     display: none;
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: rgba(0,0,0,0.95);
     z-index: 100;
     align-items: center;
     justify-content: center;
     padding: 40px;
   }
   
   .lightbox.active {
     display: flex;
   }
   
   .lightbox-content {
     max-width: 1200px;
     width: 100%;
     display: flex;
     gap: 40px;
     align-items: center;
   }
   
   .lightbox-image {
     flex: 1;
     max-height: 80vh;
     object-fit: contain;
     border-radius: 8px;
   }
   
   .lightbox-info {
     width: 300px;
     color: white;
     flex-shrink: 0;
   }
   
   .lightbox-title {
     font-family: 'Cormorant Garamond', serif;
     font-size: 32px;
     font-weight: 300;
     margin-bottom: 15px;
   }
   
   .lightbox-description {
     font-size: 15px;
     line-height: 1.8;
     color: rgba(255,255,255,0.7);
     margin-bottom: 25px;
   }
   
   .lightbox-details {
     font-size: 13px;
     color: rgba(255,255,255,0.5);
     line-height: 2;
   }
   
   .lightbox-close {
     position: absolute;
     top: 30px;
     right: 30px;
     background: none;
     border: none;
     color: white;
     font-size: 36px;
     cursor: pointer;
     opacity: 0.7;
     transition: opacity 0.2s;
     width: 50px;
     height: 50px;
   }
   
   .lightbox-close:hover {
     opacity: 1;
   }
   
   .lightbox-nav {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     background: rgba(255,255,255,0.1);
     border: none;
     color: white;
     font-size: 24px;
     cursor: pointer;
     width: 50px;
     height: 50px;
     border-radius: 50%;
     transition: all 0.2s;
   }
   
   .lightbox-nav:hover {
     background: rgba(255,255,255,0.2);
   }
   
   .lightbox-prev { left: 20px; }
   .lightbox-next { right: 20px; }
   
   .lightbox-actions {
     display: flex;
     gap: 10px;
     margin-top: 25px;
   }
   
   .lightbox-btn {
     padding: 12px 24px;
     border: 1px solid rgba(255,255,255,0.3);
     background: transparent;
     color: white;
     font-size: 13px;
     border-radius: 25px;
     cursor: pointer;
     transition: all 0.2s;
   }
   
   .lightbox-btn:hover {
     background: white;
     color: var(--text-dark);
   }
   
   .lightbox-btn.primary {
     background: var(--shuptrine-blue);
     border-color: var(--shuptrine-blue);
   }
   
   .lightbox-btn.primary:hover {
     background: var(--shuptrine-blue-dark);
     border-color: var(--shuptrine-blue-dark);
     color: white;
   }
   
   /* ==========================================================================
      Workspace / Generator
      ========================================================================== */
   .workspace {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 40px;
     margin-bottom: 40px;
   }
   
   .panel {
     background: white;
     border-radius: 20px;
     padding: 30px;
     box-shadow: 0 4px 20px rgba(0,0,0,0.04);
   }
   
   .panel-header {
     display: flex;
     align-items: center;
     justify-content: space-between;
     margin-bottom: 25px;
   }
   
   .panel-title {
     font-family: 'Cormorant Garamond', serif;
     font-size: 24px;
     font-weight: 400;
   }
   
   .panel-badge {
     font-size: 11px;
     padding: 5px 12px;
     background: var(--cream);
     border-radius: 15px;
     color: var(--text-muted);
     text-transform: uppercase;
     letter-spacing: 1px;
   }
   
   /* Upload Zone */
   .upload-zone {
     border: 2px dashed var(--warm-gray);
     border-radius: 16px;
     padding: 60px 40px;
     text-align: center;
     cursor: pointer;
     transition: all 0.3s ease;
     background: var(--cream);
   }
   
   .upload-zone:hover {
     border-color: var(--shuptrine-blue);
     background: rgba(139, 169, 181, 0.05);
   }
   
   .upload-zone.dragover {
     border-color: var(--shuptrine-blue);
     background: var(--shuptrine-blue-light);
   }
   
   .upload-zone.has-image {
     padding: 0;
     border: none;
     background: transparent;
   }
   
   .upload-icon {
     width: 60px;
     height: 60px;
     margin: 0 auto 20px;
     opacity: 0.4;
   }
   
   .upload-text {
     font-size: 16px;
     color: var(--text-muted);
     margin-bottom: 10px;
   }
   
   .upload-hint {
     font-size: 13px;
     color: var(--text-muted);
     opacity: 0.7;
   }
   
   .preview-image {
     width: 100%;
     border-radius: 12px;
     display: block;
   }
   
   .image-actions {
     display: flex;
     gap: 10px;
     margin-top: 15px;
   }
   
   .image-action-btn {
     flex: 1;
     padding: 10px;
     border: 1px solid var(--warm-gray);
     background: white;
     border-radius: 8px;
     font-size: 13px;
     color: var(--text-muted);
     cursor: pointer;
     transition: all 0.2s;
   }
   
   .image-action-btn:hover {
     border-color: var(--shuptrine-blue);
     color: var(--shuptrine-blue);
   }
   
   /* Output Zone */
   .output-zone {
     min-height: 300px;
     border-radius: 16px;
     background: var(--cream);
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
     padding: 40px;
   }
   
   .output-placeholder {
     color: var(--text-muted);
   }
   
   .output-placeholder-icon {
     width: 60px;
     height: 60px;
     margin: 0 auto 20px;
     opacity: 0.3;
   }
   
   .output-image {
     width: 100%;
     border-radius: 12px;
   }
   
   /* Controls */
   .controls-panel {
     background: white;
     border-radius: 20px;
     padding: 30px;
     box-shadow: 0 4px 20px rgba(0,0,0,0.04);
   }
   
   .control-group {
     margin-bottom: 30px;
   }
   
   .control-group:last-child {
     margin-bottom: 0;
   }
   
   .control-label {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 12px;
   }
   
   .control-label span {
     font-size: 14px;
     color: var(--text-dark);
   }
   
   .control-value {
     font-size: 13px;
     color: var(--shuptrine-blue);
     font-weight: 500;
   }
   
   .control-slider {
     width: 100%;
     height: 6px;
     border-radius: 3px;
     background: var(--warm-gray);
     -webkit-appearance: none;
     appearance: none;
     cursor: pointer;
   }
   
   .control-slider::-webkit-slider-thumb {
     -webkit-appearance: none;
     width: 20px;
     height: 20px;
     border-radius: 50%;
     background: var(--shuptrine-blue);
     cursor: pointer;
     box-shadow: 0 2px 8px rgba(0,0,0,0.15);
   }
   
   .control-description {
     font-size: 12px;
     color: var(--text-muted);
     margin-top: 8px;
     line-height: 1.5;
   }
   
   /* Style Options */
   .style-options {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 10px;
   }
   
   .style-option {
     padding: 12px;
     border: 2px solid var(--warm-gray);
     border-radius: 10px;
     text-align: center;
     cursor: pointer;
     transition: all 0.2s;
     font-size: 13px;
     color: var(--text-muted);
   }
   
   .style-option:hover {
     border-color: var(--shuptrine-blue-light);
   }
   
   .style-option.active {
     border-color: var(--shuptrine-blue);
     background: rgba(139, 169, 181, 0.1);
     color: var(--shuptrine-blue-dark);
   }
   
   /* Generate */
   .generate-section {
     text-align: center;
     padding: 40px;
   }
   
   .generate-btn {
     padding: 18px 60px;
     background: var(--shuptrine-blue);
     border: none;
     border-radius: 35px;
     color: white;
     font-size: 16px;
     font-family: 'Lato', sans-serif;
     cursor: pointer;
     transition: all 0.3s ease;
     letter-spacing: 0.5px;
   }
   
   .generate-btn:hover {
     background: var(--shuptrine-blue-dark);
     transform: translateY(-2px);
     box-shadow: 0 10px 30px rgba(139, 169, 181, 0.4);
   }
   
   .generate-btn:disabled {
     background: var(--warm-gray);
     cursor: not-allowed;
     transform: none;
     box-shadow: none;
   }
   
   .generate-hint {
     font-size: 13px;
     color: var(--text-muted);
     margin-top: 15px;
   }
   
   /* Generating Overlay */
   .generating-overlay {
     display: none;
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: rgba(255,255,255,0.95);
     z-index: 100;
     align-items: center;
     justify-content: center;
     flex-direction: column;
   }
   
   .generating-overlay.active {
     display: flex;
   }
   
   .generating-spinner {
     width: 60px;
     height: 60px;
     border: 3px solid var(--warm-gray);
     border-top-color: var(--shuptrine-blue);
     border-radius: 50%;
     animation: spin 1s linear infinite;
     margin-bottom: 30px;
   }
   
   @keyframes spin {
     to { transform: rotate(360deg); }
   }
   
   .generating-text {
     font-family: 'Cormorant Garamond', serif;
     font-size: 24px;
     color: var(--text-dark);
     margin-bottom: 10px;
   }
   
   .generating-subtext {
     font-size: 14px;
     color: var(--text-muted);
   }
   
   /* Result Comparison */
   .result-comparison {
     display: grid;
     grid-template-columns: 1fr auto 1fr;
     gap: 20px;
     align-items: center;
     margin-top: 20px;
   }
   
   .comparison-arrow {
     font-size: 30px;
     color: var(--shuptrine-blue);
   }
   
   .comparison-image {
     width: 100%;
     border-radius: 12px;
     box-shadow: 0 4px 20px rgba(0,0,0,0.1);
   }
   
   .comparison-label {
     text-align: center;
     font-size: 12px;
     color: var(--text-muted);
     text-transform: uppercase;
     letter-spacing: 1px;
     margin-top: 12px;
   }
   
   /* Hidden file input */
   #fileInput {
     display: none;
   }
   
   /* ==========================================================================
      Settings Page
      ========================================================================== */
   .settings-card {
     background: white;
     border-radius: 16px;
     padding: 30px;
     margin-bottom: 25px;
     box-shadow: 0 4px 20px rgba(0,0,0,0.04);
   }
   
   .settings-card h2 {
     font-family: 'Cormorant Garamond', serif;
     font-size: 22px;
     font-weight: 400;
     margin-bottom: 25px;
     padding-bottom: 15px;
     border-bottom: 1px solid var(--warm-gray);
   }
   
   .setting-row {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 15px 0;
     border-bottom: 1px solid var(--cream);
   }
   
   .setting-row:last-child {
     border-bottom: none;
   }
   
   .setting-info h3 {
     font-size: 15px;
     font-weight: 400;
     margin-bottom: 4px;
   }
   
   .setting-info p {
     font-size: 13px;
     color: var(--text-muted);
   }
   
   /* Toggle Switch */
   .toggle {
     position: relative;
     width: 50px;
     height: 28px;
   }
   
   .toggle input {
     opacity: 0;
     width: 0;
     height: 0;
   }
   
   .toggle-slider {
     position: absolute;
     cursor: pointer;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background-color: var(--warm-gray);
     border-radius: 28px;
     transition: 0.3s;
   }
   
   .toggle-slider:before {
     position: absolute;
     content: "";
     height: 22px;
     width: 22px;
     left: 3px;
     bottom: 3px;
     background-color: white;
     border-radius: 50%;
     transition: 0.3s;
     box-shadow: 0 2px 5px rgba(0,0,0,0.1);
   }
   
   .toggle input:checked + .toggle-slider {
     background-color: var(--shuptrine-blue);
   }
   
   .toggle input:checked + .toggle-slider:before {
     transform: translateX(22px);
   }
   
   /* Select + Slider */
   .setting-select {
     padding: 10px 35px 10px 15px;
     border: 1px solid var(--warm-gray);
     border-radius: 8px;
     font-size: 14px;
     color: var(--text-dark);
     background: white;
     cursor: pointer;
     appearance: none;
     background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%237A756E' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
     background-repeat: no-repeat;
     background-position: right 12px center;
   }
   
   .setting-select:focus {
     outline: none;
     border-color: var(--shuptrine-blue);
   }
   
   .setting-slider {
     width: 150px;
     height: 6px;
     border-radius: 3px;
     background: var(--warm-gray);
     -webkit-appearance: none;
     cursor: pointer;
   }
   
   .setting-slider::-webkit-slider-thumb {
     -webkit-appearance: none;
     width: 18px;
     height: 18px;
     border-radius: 50%;
     background: var(--shuptrine-blue);
     cursor: pointer;
   }
   
   /* Favorite Subjects */
   .subjects-grid {
     display: flex;
     flex-wrap: wrap;
     gap: 10px;
     margin-top: 15px;
   }
   
   .subject-tag {
     padding: 8px 16px;
     border: 1px solid var(--warm-gray);
     border-radius: 20px;
     font-size: 13px;
     color: var(--text-muted);
     cursor: pointer;
     transition: all 0.2s;
   }
   
   .subject-tag:hover {
     border-color: var(--shuptrine-blue-light);
   }
   
   .subject-tag.active {
     background: var(--shuptrine-blue);
     border-color: var(--shuptrine-blue);
     color: white;
   }
   
   /* Save */
   .save-section {
     text-align: center;
     padding-top: 20px;
   }
   
   .save-btn {
     padding: 14px 50px;
     background: var(--shuptrine-blue);
     border: none;
     border-radius: 30px;
     color: white;
     font-size: 15px;
     cursor: pointer;
     transition: all 0.3s;
   }
   
   .save-btn:hover {
     background: var(--shuptrine-blue-dark);
   }
   
   .save-note {
     font-size: 13px;
     color: var(--text-muted);
     margin-top: 15px;
   }
   
   /* Toast */
   .toast {
     position: fixed;
     bottom: 30px;
     left: 50%;
     transform: translateX(-50%) translateY(100px);
     background: var(--text-dark);
     color: white;
     padding: 16px 30px;
     border-radius: 30px;
     font-size: 14px;
     opacity: 0;
     transition: all 0.3s ease;
   }
   
   .toast.show {
     transform: translateX(-50%) translateY(0);
     opacity: 1;
   }
   
   /* ==========================================================================
      Chat + Gallery (Assistant/Studio)
      ========================================================================== */
   .chat-layout {
     display: flex;
     height: calc(100vh - 70px);
   }
   
   .chat-section {
     flex: 1;
     display: flex;
     flex-direction: column;
     border-right: 1px solid var(--warm-gray);
     background: white;
     max-width: 550px;
     min-width: 400px;
   }
   
   .chat-messages {
     flex: 1;
     overflow-y: auto;
     padding: 30px;
   }
   
   .message {
     margin-bottom: 25px;
     animation: fadeIn 0.3s ease;
   }
   
   @keyframes fadeIn {
     from { opacity: 0; transform: translateY(10px); }
     to { opacity: 1; transform: translateY(0); }
   }
   
   .message.assistant {
     padding-right: 40px;
   }
   
   .message.user {
     padding-left: 40px;
     text-align: right;
   }
   
   .message-label {
     font-size: 11px;
     text-transform: uppercase;
     letter-spacing: 1.5px;
     color: var(--text-muted);
     margin-bottom: 8px;
   }
   
   .message-content {
     font-size: 15px;
     line-height: 1.7;
     color: var(--text-dark);
   }
   
   .message.user .message-content {
     background: var(--shuptrine-blue-light);
     display: inline-block;
     padding: 12px 18px;
     border-radius: 18px 18px 4px 18px;
     color: var(--text-dark);
   }
   
   .message.assistant .message-content {
     font-family: 'Cormorant Garamond', serif;
     font-size: 17px;
   }
   
   /* Welcome + Suggestions */
   .welcome {
     text-align: center;
     padding: 60px 40px;
   }
   
   .welcome h2 {
     font-family: 'Cormorant Garamond', serif;
     font-size: 28px;
     font-weight: 300;
     color: var(--shuptrine-blue-dark);
     margin-bottom: 15px;
   }
   
   .welcome p {
     color: var(--text-muted);
     font-size: 14px;
     line-height: 1.8;
     max-width: 320px;
     margin: 0 auto;
   }
   
   .suggestions {
     margin-top: 35px;
     display: flex;
     flex-direction: column;
     gap: 10px;
   }
   
   .suggestion {
     background: var(--cream);
     border: none;
     padding: 14px 20px;
     border-radius: 12px;
     font-size: 14px;
     color: var(--text-dark);
     cursor: pointer;
     transition: all 0.2s ease;
     text-align: left;
   }
   
   .suggestion:hover {
     background: var(--shuptrine-blue-light);
     transform: translateX(5px);
   }
   
   /* Input Area */
   .input-area {
     padding: 20px 30px 30px;
     background: white;
     border-top: 1px solid var(--warm-gray);
   }
   
   .input-wrapper {
     display: flex;
     gap: 12px;
     align-items: flex-end;
   }
   
   .input-wrapper textarea {
     flex: 1;
     border: 1px solid var(--warm-gray);
     border-radius: 20px;
     padding: 14px 20px;
     font-family: 'Lato', sans-serif;
     font-size: 15px;
     resize: none;
     outline: none;
     transition: border-color 0.2s ease;
     min-height: 50px;
     max-height: 150px;
     line-height: 1.5;
   }
   
   .input-wrapper textarea:focus {
     border-color: var(--shuptrine-blue);
   }
   
   .input-wrapper textarea::placeholder {
     color: var(--text-muted);
   }
   
   .send-btn {
     width: 50px;
     height: 50px;
     border-radius: 50%;
     background: var(--shuptrine-blue);
     border: none;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.2s ease;
     flex-shrink: 0;
   }
   
   .send-btn:hover {
     background: var(--shuptrine-blue-dark);
     transform: scale(1.05);
   }
   
   .send-btn:disabled {
     background: var(--warm-gray);
     cursor: not-allowed;
     transform: none;
   }
   
   .send-btn svg {
     width: 20px;
     height: 20px;
     fill: white;
   }
   
   /* Gallery Section */
   .gallery-section {
     flex: 1.5;
     background: var(--cream);
     overflow-y: auto;
     padding: 30px;
   }
   
   .gallery-header {
     margin-bottom: 25px;
   }
   
   .gallery-header h3 {
     font-family: 'Cormorant Garamond', serif;
     font-size: 22px;
     font-weight: 400;
     color: var(--text-dark);
   }
   
   .gallery-header p {
     font-size: 13px;
     color: var(--text-muted);
     margin-top: 5px;
   }
   
   .gallery-grid-assistant {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
     gap: 20px;
   }
   
   .gallery-item {
     background: white;
     border-radius: 12px;
     overflow: hidden;
     box-shadow: 0 4px 20px rgba(0,0,0,0.06);
     transition: all 0.3s ease;
     animation: fadeIn 0.4s ease;
   }
   
   .gallery-item:hover {
     transform: translateY(-5px);
     box-shadow: 0 8px 30px rgba(0,0,0,0.1);
   }
   
   .gallery-item img {
     width: 100%;
     aspect-ratio: 1;
     object-fit: cover;
     display: block;
   }
   
   .gallery-item-info {
     padding: 15px;
   }
   
   .gallery-item-prompt {
     font-size: 13px;
     color: var(--text-muted);
     line-height: 1.5;
     display: -webkit-box;
     -webkit-line-clamp: 2;
     -webkit-box-orient: vertical;
     overflow: hidden;
   }
   
   .gallery-item-actions {
     display: flex;
     gap: 8px;
     margin-top: 12px;
   }
   
   .gallery-item-actions button {
     flex: 1;
     padding: 8px;
     border: 1px solid var(--warm-gray);
     background: transparent;
     border-radius: 6px;
     font-size: 12px;
     color: var(--text-muted);
     cursor: pointer;
     transition: all 0.2s ease;
   }
   
   .gallery-item-actions button:hover {
     border-color: var(--shuptrine-blue);
     color: var(--shuptrine-blue);
   }
   
   /* Empty Gallery State */
   .gallery-empty {
     text-align: center;
     padding: 80px 40px;
     color: var(--text-muted);
   }
   
   .gallery-empty-icon {
     width: 80px;
     height: 80px;
     margin: 0 auto 25px;
     opacity: 0.4;
   }
   
   .gallery-empty h4 {
     font-family: 'Cormorant Garamond', serif;
     font-size: 22px;
     font-weight: 400;
     color: var(--text-dark);
     margin-bottom: 10px;
   }
   
   .gallery-empty p {
     font-size: 14px;
     line-height: 1.7;
   }
   
   /* Generating state (compact) */
   .generating {
     display: flex;
     align-items: center;
     gap: 12px;
     padding: 20px;
     background: rgba(139, 169, 181, 0.1);
     border-radius: 12px;
     margin-top: 20px;
   }
   
   .generating-dot {
     width: 24px;
     height: 24px;
     border: 2px solid var(--shuptrine-blue-light);
     border-top-color: var(--shuptrine-blue);
     border-radius: 50%;
     animation: spin 1s linear infinite;
   }
   
   .generating-label {
     font-size: 14px;
     color: var(--shuptrine-blue-dark);
     font-style: italic;
   }
   
   /* Scrollbar */
   ::-webkit-scrollbar {
     width: 8px;
   }
   ::-webkit-scrollbar-track {
     background: transparent;
   }
   ::-webkit-scrollbar-thumb {
     background: var(--warm-gray);
     border-radius: 4px;
   }
   ::-webkit-scrollbar-thumb:hover {
     background: var(--shuptrine-blue-light);
   }
   
   /* Modal (History) */
   .modal-overlay {
     display: none;
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: rgba(0,0,0,0.4);
     z-index: 100;
     align-items: center;
     justify-content: center;
   }
   .modal-overlay.active { display: flex; }
   
   .modal {
     background: white;
     border-radius: 16px;
     width: 90%;
     max-width: 500px;
     max-height: 70vh;
     overflow: hidden;
     box-shadow: 0 20px 60px rgba(0,0,0,0.2);
   }
   
   .modal-header {
     padding: 25px;
     border-bottom: 1px solid var(--warm-gray);
     display: flex;
     justify-content: space-between;
     align-items: center;
   }
   .modal-header h3 {
     font-family: 'Cormorant Garamond', serif;
     font-size: 22px;
     font-weight: 400;
   }
   .modal-close {
     background: none;
     border: none;
     font-size: 24px;
     cursor: pointer;
     color: var(--text-muted);
     width: 36px;
     height: 36px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
   }
   .modal-close:hover {
     background: var(--cream);
   }
   .modal-body {
     padding: 20px;
     overflow-y: auto;
     max-height: calc(70vh - 80px);
   }
   .history-item {
     padding: 15px;
     border-radius: 10px;
     cursor: pointer;
     transition: background 0.2s ease;
     margin-bottom: 8px;
   }
   .history-item:hover {
     background: var(--cream);
   }
   .history-item-date {
     font-size: 11px;
     color: var(--text-muted);
     text-transform: uppercase;
     letter-spacing: 1px;
   }
   .history-item-preview {
     font-size: 14px;
     margin-top: 5px;
     color: var(--text-dark);
   }
   
   /* ==========================================================================
      Responsive
      ========================================================================== */
   @media (max-width: 900px) {
     .about-hero,
     .legacy-section,
     .haiti-section {
       grid-template-columns: 1fr;
       gap: 40px;
     }
     .about-content h1 {
       font-size: 42px;
     }
     .quote-text {
       font-size: 24px;
     }
     .lightbox-content {
       flex-direction: column;
     }
     .lightbox-info {
       width: 100%;
       text-align: center;
     }
     .gallery-grid {
       grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
     }
     .workspace {
       grid-template-columns: 1fr;
     }
     .style-options {
       grid-template-columns: repeat(2, 1fr);
     }
     .chat-layout {
       flex-direction: column;
       height: auto;
     }
     .chat-section {
       max-width: none;
       min-width: 0;
       border-right: none;
       border-bottom: 1px solid var(--warm-gray);
     }
   }
   
/* Navilanding-gation */
.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease;
}

.landing-nav.scrolled {
  background: rgba(255, 252, 249, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 50px;
  box-shadow: 0 2px 30px rgba(0,0,0,0.05);
}

.landing-nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--text-dark);
  text-decoration: none;
  letter-spacing: 2px;
}

.landing-nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.landing-nav-links a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.landing-nav-links a:hover {
  color: var(--shuptrine-blue);
}

.landing-nav-cta {
  padding: 12px 28px;
  background: var(--shuptrine-blue);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.landing-nav-cta:hover {
  background: var(--shuptrine-blue-dark);
  transform: translateY(-2px);
}

/* Hero landing-*/
.landing-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.landing-hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, var(--shuptrine-blue-light) 0%, var(--shuptrine-blue) 100%);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

.landing-hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.landing-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.landing-hero-text {
  padding-right: 40px;
}

.landing-hero-badge {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(139, 169, 181, 0.15);
  border-radius: 20px;
  font-size: 12px;
  color: var(--shuptrine-blue-dark);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.landing-hero-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--shuptrine-blue);
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.landing-hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

.landing-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 30px;
  letter-spacing: -1px;
}

.landing-hero h1 span {
  color: var(--shuptrine-blue);
  font-style: italic;
}

.landing-hero-description {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 40px;
  max-width: 480px;
}

.landing-hero-buttons {
  display: flex;
  gap: 20px;
}

.landing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: 35px;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.landing-btn-primary {
  background: var(--text-dark);
  color: white;
}

.landing-btn-primary:hover {
  background: #2A2622;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.landing-btn-secondary {
  background: var(--warm-brown);
  color: white;
  border: 1px solid var(--warm-brown);
}

.landing-btn-secondary:hover {
  background: #8A7060;
  border-color: #8A7060;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(168, 144, 128, 0.25);
}

.landing-hero-visual {
  position: relative;
}

.landing-hero-image-stack {
  position: relative;
  height: 600px;
}

.landing-hero-image {
  position: absolute;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
  transition: transform 0.5s ease;
}

.landing-hero-image:nth-child(1) {
  width: 320px;
  height: 400px;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, var(--warm-brown) 0%, #8B7355 100%);
  z-index: 3;
}

.landing-hero-image:nth-child(2) {
  width: 280px;
  height: 350px;
  top: 80px;
  left: 200px;
  background: linear-gradient(180deg, #A8B5A0 0%, #7A8B72 100%);
  z-index: 2;
}

.landing-hero-image:nth-child(3) {
  width: 240px;
  height: 300px;
  top: 180px;
  left: 380px;
  background: linear-gradient(180deg, var(--shuptrine-blue-light) 0%, var(--shuptrine-blue) 100%);
  z-index: 1;
}

.landing-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.landing-hero-image-stack:hover .hero-image:nth-child(1) {
  transform: rotate(-3deg) translateY(-10px);
}

.landing-hero-image-stack:hover .hero-image:nth-child(2) {
  transform: rotate(2deg) translateY(-5px);
}

.landing-hero-image-stack:hover .hero-image:nth-child(3) {
  transform: rotate(-1deg) translateY(-8px);
}

/* Features landing-Section */
.features {
  padding: 150px 50px;
  background: var(--warm-white);
}

.landing-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}

.landing-section-label {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--shuptrine-blue);
  margin-bottom: 20px;
}

.landing-section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  margin-bottom: 25px;
  line-height: 1.2;
}

.landing-section-header p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.8;
}

.landing-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.landing-feature-card {
  background: white;
  border-radius: 24px;
  padding: 50px 40px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid transparent;
}

.landing-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
  border-color: var(--shuptrine-blue-light);
}

.landing-feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, var(--shuptrine-blue-light), var(--shuptrine-blue));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-feature-icon svg {
  width: 36px;
  height: 36px;
  stroke: white;
  fill: none;
  stroke-width: 1.5;
}

.landing-feature-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  margin-bottom: 15px;
  font-weight: 400;
}

.landing-feature-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* Gallery Preview landing-*/
.gallery-preview {
  padding: 150px 50px;
  background: var(--cream);
}

.landing-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1400px;
  margin: 0 auto;
}

.landing-gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.landing-gallery-item:nth-child(1) {
  grid-row: span 2;
}

.landing-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.landing-gallery-item:hover img {
  transform: scale(1.08);
}

.landing-gallery-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(transparent, rgba(0,0,0,0.4));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.landing-gallery-item:hover::after {
  opacity: 1;
}

.landing-gallery-item-title {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: white;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 2;
}

.landing-gallery-item:hover .gallery-item-title {
  opacity: 1;
  transform: translateY(0);
}

/* AI Studio landing-Section */
.ai-studio {
  padding: 150px 50px;
  background: linear-gradient(180deg, var(--warm-white) 0%, var(--cream) 100%);
}

.landing-ai-studio {
  padding: 150px 50px 180px;
}

.landing-ai-studio-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.landing-ai-studio-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 30px;
  line-height: 1.2;
}

.landing-ai-studio-text p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 20px;
}

.landing-ai-features-list {
  list-style: none;
  margin: 40px 0;
}

.landing-ai-features-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid var(--warm-gray);
  font-size: 15px;
}

.landing-ai-features-list li:last-child {
  border-bottom: none;
}

.landing-check-icon {
  width: 24px;
  height: 24px;
  background: var(--shuptrine-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.landing-check-icon svg {
  width: 12px;
  height: 12px;
  stroke: white;
  stroke-width: 3;
}

.landing-ai-studio-visual {
  position: relative;
}

.landing-ai-mockup {
  background: white;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.1);
}

.landing-ai-mockup-header {
  display: flex;
  gap: 8px;
  margin-bottom: 25px;
}

.landing-ai-mockup-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--warm-gray);
}

.landing-ai-mockup-dot:first-child { background: #FF6B6B; }
.landing-ai-mockup-dot:nth-child(2) { background: #FFE66D; }
.landing-ai-mockup-dot:nth-child(3) { background: #4ECDC4; }

.landing-ai-mockup-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.landing-ai-mockup-chat {
  background: var(--cream);
  border-radius: 16px;
  padding: 20px;
}

.landing-chat-bubble {
  background: white;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 13px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.landing-chat-bubble.user {
  background: var(--shuptrine-blue-light);
  margin-left: 30px;
}

.landing-ai-mockup-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.landing-ai-mockup-thumb {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--warm-brown), #7A6B5A);
  border-radius: 12px;
}

.landing-ai-mockup-thumb:nth-child(2) {
  background: linear-gradient(135deg, #A8B5A0, #7A8B72);
}

.landing-ai-mockup-thumb:nth-child(3) {
  background: linear-gradient(135deg, var(--shuptrine-blue-light), var(--shuptrine-blue));
}

.landing-ai-mockup-thumb:nth-child(4) {
  background: linear-gradient(135deg, #C9A962, #A88B42);
}

/* About landing-Section */
.landing-about {
  padding: 150px 50px;
  background: var(--text-dark);
  color: white;
}

.landing-about-content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.landing-about-image {
  position: relative;
}

.landing-about-image-main {
  width: 100%;
  border-radius: 20px;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.landing-about-image-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 150px;
  height: 150px;
  background: var(--shuptrine-blue);
  border-radius: 20px;
  z-index: -1;
}

.landing-about-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 30px;
}

.landing-about-text p {
  font-size: 17px;
  line-height: 1.9;
  opacity: 0.85;
  margin-bottom: 20px;
}

.landing-about-quote {
  border-left: 3px solid var(--shuptrine-blue);
  padding-left: 30px;
  margin: 40px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-style: italic;
  line-height: 1.6;
  opacity: 0.9;
}

/* Artist Tools landing-Section */
.landing-tools {
  padding: 100px 50px;
  background: var(--warm-brown);
  color: white;
  text-align: center;
}

.landing-tools h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 20px;
}

.landing-tools p {
  font-size: 17px;
  max-width: 700px;
  margin: 0 auto 30px;
  opacity: 0.9;
  line-height: 1.8;
}

.landing-tools-link {
  display: inline-block;
  padding: 14px 35px;
  background: white;
  color: var(--warm-brown);
  text-decoration: none;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.landing-tools-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  background: var(--cream);
}

/* Haiti landing-Section (kept for legacy) */
.landing-haiti {
  padding: 100px 50px;
  background: var(--shuptrine-blue);
  color: white;
  text-align: center;
}

.landing-haiti h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 20px;
}

.landing-haiti p {
  font-size: 17px;
  max-width: 700px;
  margin: 0 auto 30px;
  opacity: 0.9;
  line-height: 1.8;
}

.landing-haiti-link {
  display: inline-block;
  padding: 14px 35px;
  background: white;
  color: var(--shuptrine-blue-dark);
  text-decoration: none;
  border-radius: 30px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.landing-haiti-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* CTA landing-Section */
.landing-cta {
  padding: 150px 50px;
  text-align: center;
  background: var(--cream);
}

.landing-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 300;
  margin-bottom: 25px;
  line-height: 1.2;
}

.landing-cta p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 40px;
}

.landing-cta .btn-primary {
  padding: 20px 50px;
  font-size: 16px;
}

/* Footer landing-*/
.landing-footer {
  padding: 60px 50px 40px;
  background: var(--warm-white);
  border-top: 1px solid var(--warm-gray);
}

.landing-footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.landing-footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--text-dark);
}

.landing-footer-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.landing-footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.landing-footer-links a:hover {
  color: var(--shuptrine-blue);
}

.landing-footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 1100px) {
  .landing-hero-content,
  .landing-ai-studio-content,
  .landing-about-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .landing-hero-bg {
    width: 100%;
    height: 50%;
    top: auto;
    bottom: 0;
    clip-path: polygon(0 30%, 100% 0, 100% 100%, 0% 100%);
  }
  
  .landing-hero-text {
    padding-right: 0;
    text-align: center;
  }
  
  .landing-hero h1 {
    font-size: 52px;
  }
  
  .landing-hero-description {
    margin: 0 auto 40px;
  }
  
  .landing-hero-buttons {
    justify-content: center;
  }
  
  .landing-hero-visual {
    order: -1;
  }
  
  .landing-hero-image-stack {
    height: 400px;
    display: flex;
    justify-content: center;
  }
  
  .landing-hero-image {
    position: relative !important;
    top: auto !important;
    left: auto !important;
  }
  
  .landing-hero-image:nth-child(1) {
    width: 200px;
    height: 260px;
    margin-right: -40px;
  }
  
  .landing-hero-image:nth-child(2) {
    width: 200px;
    height: 260px;
    margin-right: -40px;
    margin-top: 40px;
  }
  
  .landing-hero-image:nth-child(3) {
    width: 200px;
    height: 260px;
    margin-top: 80px;
  }
  
  .landing-features-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  
  .landing-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .landing-gallery-item:nth-child(1) {
    grid-row: auto;
  }
}

@media (max-width: 768px) {
  .landing-nav {
    padding: 15px 25px;
  }
  
  .landing-nav-links {
    display: none;
  }
  
  .landing-hero, .landing-features, .landing-gallery-preview, .landing-ai-studio, .landing-about, .landing-cta {
    padding: 80px 25px;
  }
  
  .landing-hero h1 {
    font-size: 40px;
  }
  
  .landing-section-header h2,
  .landing-ai-studio-text h2,
  .about-text h2 {
    font-size: 36px;
  }
  
  .landing-cta h2 {
    font-size: 40px;
  }
  
  .landing-hero-image-stack {
    flex-direction: column;
    height: auto;
    align-items: center;
  }
  
  .landing-hero-image:nth-child(1),
  .landing-hero-image:nth-child(2),
  .landing-hero-image:nth-child(3) {
    margin: 0 0 -60px 0 !important;
    width: 250px !important;
    height: 300px !important;
  }
  
  .landing-footer-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  
  .landing-footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
  }
}

/* ==========================================================================
   Studio Footer (compact version for interior pages)
   ========================================================================== */
.studio-footer {
  padding: 25px 30px;
  background: white;
  border-top: 1px solid var(--warm-gray);
  margin-top: auto;
}

.studio-footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.studio-footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--shuptrine-blue);
  letter-spacing: 1px;
}

.studio-footer-links {
  display: flex;
  gap: 25px;
  list-style: none;
}

.studio-footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.studio-footer-links a:hover {
  color: var(--shuptrine-blue);
}

.studio-footer-copy {
  font-size: 12px;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .studio-footer-content {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .studio-footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
}
