/* V3 - Minimal, Maintainable, Modern */

/* Reset */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
}
img { max-width: 100%; height: auto; display: block; }
.device-mockup img { pointer-events: none; user-select: none; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Layout */
.wrapper { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.wrapper-narrow { max-width: 940px; margin: 0 auto; padding: 0 20px; }

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  padding: 1rem 0;
}
header .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img { height: 35px; }
nav ul {
  display: flex;
  gap: 2rem;
  align-items: center;
}
nav a {
  color: #118ab2;
  font-weight: 600;
  font-size: 15px;
  transition: opacity 0.2s;
}
nav a:hover { opacity: 0.7; }
.nav-actions {
  display: flex;
  gap: 1rem;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  transition: all 0.3s;
  border-radius: 2px;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s;
  border: 2px solid transparent;
}
.btn-primary {
  background: #118ab2;
  color: #fff;
}
.btn-primary:hover {
  background: #0d6e8f;
  transform: translateY(-1px);
}
.btn-secondary {
  background: #f3f6f7;
  color: #118ab2;
}
.btn-secondary:hover {
  background: #e4ebed;
}
.btn-lg {
  padding: 1rem 2rem;
  font-size: 16px;
}

/* Hero */
.hero {
  position: relative;
  background: #e4ebed;
  min-height: 65vh;
  overflow: hidden;
  padding: 1rem 0;
  display: flex;
  align-items: center;
}

.hero-bg-images {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-bg-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.08;
}

.hero-wave {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 55%;
  max-width: 800px;
  height: auto;
  z-index: 1;
  opacity: 0.4;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 48% 52%;
  gap: 2rem;
  align-items: center;
  width: 100%;
}

.hero-content {
  max-width: 600px;
  padding-left: 20px;
}

.hero h1 {
  font-size: clamp(1.75rem, 3.8vw, 3.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.25rem;
  color: #000;
  letter-spacing: -0.02em;
  max-width: 100%;
}

.hero p {
  font-size: clamp(0.875rem, 1.2vw, 0.95rem);
  color: #333;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  max-width: 460px;
}

.hero-video-container {
  position: relative;
  width: 100%;
  max-width: none;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  margin-right: -0px;
}

.hero-video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CTA Boxes */
.cta-group {
  display: flex;
  gap: 0.625rem;
  flex-wrap: nowrap;
}
.cta-box {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0.75rem 1.25rem;
  background: #fff;
  border: 2px solid transparent;
  border-radius: 8px;
  transition: all 0.2s;
  text-align: left;
  min-height: 68px;
  justify-content: center;
  flex: 1;
  min-width: 0;
}
.cta-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.cta-box.primary {
  background: #2ed47a;
  color: #fff;
}
.cta-box.primary:hover {
  background: #26b665;
}
.cta-box:not(.primary) {
  border-color: #118ab2;
  color: #118ab2;
}
.cta-box:not(.primary):hover {
  background: #f8f9fa;
}
.cta-box strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
  font-weight: 600;
  white-space: nowrap;
}
.cta-box small {
  display: block;
  opacity: 0.85;
  font-size: 0.6875rem;
  font-weight: 400;
  line-height: 1.3;
}

/* Partners */
.partners {
  padding: 3rem 0;
  background: #fff;
  border-top: 1px solid #e4ebed;
  border-bottom: 1px solid #e4ebed;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem 2rem;
  align-items: center;
  justify-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.partners-grid img {
  height: 45px;
  opacity: 0.5;
  transition: opacity 0.2s;
  max-width: 100%;
  object-fit: contain;
}
.partners-grid img:hover { opacity: 1; }

/* Sections */
section { padding: 5rem 0; }
section.alt { background: #f8f9fa; }

/* Find Artist Section */
.find-artist {
  position: relative;
  overflow: hidden;
}
.find-artist-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.find-artist-bg img {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: auto;
  opacity: 0.3;
}
.find-artist .wrapper {
  position: relative;
  z-index: 1;
}
.find-artist-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.device-mockup-wrapper {
  position: relative;
  display: block;
  overflow: visible;
}
.device-mockup {
  position: relative;
  width: 100%;
  max-width: 600px;
  display: block;
  isolation: isolate;
}
.device-mockup > img {
  max-width: 100%;
}
.device-mockup::before,
.device-mockup::after {
  display: none !important;
}
.device-mockup > .ipad-mockup:nth-child(n+2),
.device-mockup > .iphone-mockup:nth-child(n+3),
.device-mockup > .device-gif:nth-child(n+4) {
  display: none !important;
}
.ipad-mockup {
  width: 100%;
  height: auto;
  display: block !important;
  position: relative !important;
  z-index: 1;
  transform: none !important;
}
.ipad-mockup:only-of-type {
  display: block !important;
}
.iphone-mockup {
  position: absolute !important;
  bottom: 8% !important;
  right: -5% !important;
  width: 25% !important;
  height: auto !important;
  z-index: 3 !important;
  display: block !important;
  animation: float 3s ease-in-out infinite !important;
  transform-origin: center !important;
}
.device-gif {
  position: absolute !important;
  top: 6.5% !important;
  left: 7.5% !important;
  width: 64% !important;
  height: auto !important;
  z-index: 2 !important;
  display: block !important;
  border-radius: 8px !important;
  transform: none !important;
}
.find-artist-content h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  margin-bottom: 1.25rem;
  color: #fff;
  line-height: 1.1;
}
.find-artist-content p {
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.find-artist-content ul {
  margin: 2rem 0;
  padding-left: 0;
}
.find-artist-content li {
  list-style: none;
  color: #fff;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}
.find-artist-content li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #ff4d6d;
  font-size: 1.5rem;
  line-height: 1;
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
@media (max-width: 768px) {
  .find-artist-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
section.dark {
  background: linear-gradient(135deg, #0d4d5c 0%, #0a2e3a 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

section.dark::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 60%;
  height: 140%;
  background: #1a7a8e;
  border-radius: 50%;
  opacity: 0.3;
  z-index: 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-header p {
  font-size: 1.125rem;
  color: #666;
  max-width: 650px;
  margin: 0 auto;
}

/* Split Layout */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.split h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 0.5px;
}
.split p {
  color: #666;
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
section.dark .split h2 {
  color: #fff;
}
section.dark .split p {
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem;
}
section.dark .split ul {
  margin: 2rem 0;
  padding-left: 0;
}
section.dark .split li {
  list-style: none;
  color: #fff;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}
section.dark .split li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #2ed47a;
  font-size: 1.5rem;
  line-height: 1;
}
.split ul {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}
.split li {
  list-style: disc;
  color: #666;
  margin-bottom: 0.5rem;
}
.split > div > img:not(.ipad-mockup):not(.iphone-mockup):not(.device-gif) {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.artist-community .split img {
  box-shadow: none !important;
}
section.dark .btn-primary {
  background: #ff4d6d;
  border: none;
}
section.dark .btn-primary:hover {
  background: #e63956;
}

/* Impact Section */
.impact-image img {
  width: 80% !important;
  max-width: 80% !important;
  margin: 0 auto;
  display: block;
}

/* Wall Owners Section */
.wall-owners {
  background: #fff;
  padding: 5rem 0;
}
.wall-owners-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 2rem 0;
}
.wall-owners-tags .tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #e8f4f8;
  color: #118ab2;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 2px solid #118ab2;
}

/* Artist Community Section */
.artist-community {
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}
.artist-community::before {
  content: '';
  position: absolute;
  top: -15%;
  right: -15%;
  width: 70%;
  height: 130%;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 73% 27% 44% 56% / 49% 44% 56% 51%;
  z-index: 0;
}
.artist-community .split {
  position: relative;
  z-index: 1;
}
.artist-community h2 {
  color: #fff;
}
.artist-community p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.05rem;
}
.artist-community ul {
  margin: 2rem 0;
  padding-left: 0;
}
.artist-community li {
  list-style: none;
  color: #fff;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}
.artist-community li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2ed47a;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: bold;
}
.artist-community .btn-primary {
  background: #2ed47a;
  border: none;
}
.artist-community .btn-primary:hover {
  background: #26b665;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.card {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #e4ebed;
  transition: all 0.2s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  border-color: #118ab2;
}
.card img {
  width: 50px;
  height: 50px;
  margin: 0 auto 1rem;
}
.card h3 {
  font-size: 1rem;
  font-weight: 600;
}

/* Projects Mosaic */
.projects-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.mosaic-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  transition: transform 0.3s;
}
.mosaic-item:hover {
  transform: scale(1.02);
}
.mosaic-large {
  grid-column: span 2;
  grid-row: span 1;
}
.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mosaic-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  padding: 1.5rem;
  color: #fff;
}
.mosaic-overlay h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
}

/* Press */
.press-section {
  position: relative;
  background: linear-gradient(180deg, #e8f4f8 0%, #f5f9fb 100%);
  padding: 3rem 0;
}
.press-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.press-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}
.press-section .section-header {
  position: relative;
  z-index: 1;
}
.press-section .section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
}
.press-section .section-header p {
  font-size: 1.125rem;
  color: #666;
}
.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}
.press-item {
  background: #fff;
  padding: 0.75rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.2s;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.press-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.press-item img {
  height: 55px;
  object-fit: contain;
  opacity: 0.8;
  margin: 0 auto;
}
.press-item blockquote {
  font-style: italic;
  color: #555;
  font-size: 0.8rem;
  line-height: 1.35;
  margin: 0;
}

/* Contact Page */
.contact-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #f5f5f5;
}
.contact-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.contact-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}
.contact-hands {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hand-left {
  position: absolute;
  left: 5%;
  top: 20%;
  width: 200px;
  height: auto;
}
.hand-right {
  position: absolute;
  right: 10%;
  top: 10%;
  width: 250px;
  height: auto;
}
.contact-hero h1 {
  position: relative;
  z-index: 2;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 0.9;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.contact-form-section {
  padding: 5rem 0;
  background: #fff;
}
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.contact-email {
  font-size: 1.125rem;
  color: #666;
  margin-bottom: 2rem;
}
.contact-social {
  display: flex;
  gap: 1rem;
}
.contact-social a {
  display: block;
  width: 40px;
  height: 40px;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.contact-social a:hover {
  opacity: 1;
}
.contact-social img {
  width: 100%;
  height: 100%;
}

.contact-form {
  background: #f8f9fa;
  padding: 2.5rem;
  border-radius: 12px;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid #e4ebed;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #118ab2;
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Newsletter */
.newsletter {
  background: linear-gradient(135deg, #118ab2 0%, #0d6e8f 100%);
  color: #fff;
  padding: 4rem 0;
}
.newsletter-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.newsletter h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  margin-bottom: 1rem;
}
.newsletter p {
  font-size: 1.125rem;
  opacity: 0.95;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 500px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 1rem 1.25rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
}
.newsletter-form button {
  padding: 1rem 2rem;
  background: #2ed47a;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.newsletter-form button:hover {
  background: #26b665;
}

/* Form Messages */
.success-message,
.w-form-done {
  background: #d4edda;
  color: #155724;
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
  text-align: center;
  border: 1px solid #c3e6cb;
}
.error-message,
.w-form-fail {
  background: #f8d7da;
  color: #721c24;
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
  text-align: center;
  border: 1px solid #f5c6cb;
}

/* Footer */
footer {
  background: #1a1a1a;
  color: #fff;
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-col a {
  opacity: 0.8;
  font-size: 0.9375rem;
  transition: opacity 0.2s;
}
.footer-col a:hover { opacity: 1; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  text-align: center;
  opacity: 0.6;
  font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: right 0.3s;
    z-index: 1000;
    padding-top: 80px;
  }
  nav.active {
    right: 0;
  }
  nav ul {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
  }
  nav ul li {
    border-bottom: 1px solid #e4ebed;
    padding-bottom: 1rem;
  }
  nav ul li:last-child {
    border-bottom: none;
  }
  .nav-actions {
    gap: 0.5rem;
  }
  .nav-actions .btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
  }
  .cta-box strong {
    font-size: 0.85rem;
  }
  .cta-box small {
    font-size: 0.625rem;
  }
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .hero { 
    min-height: auto; 
    padding: 3rem 0;
  }
  .hero-container { 
    grid-template-columns: 1fr; 
    gap: 2rem;
    min-height: auto;
  }
  .hero-content { 
    max-width: 100%;
    padding: 0 1.5rem;
  }
  .hero h1 {
    padding: 0 1rem;
  }
  .hero-video-container { 
    order: -1;
    max-width: 100%;
    margin: 0;
  }
  .hero-wave { 
    width: 90%;
    right: -30%;
    top: 20%;
    opacity: 0.3;
  }
  .cta-group {
    flex-direction: column;
  }
  .cta-box {
    width: 100%;
  }
  .press-grid {
    grid-template-columns: 1fr;
  }
  .press-section::before {
    width: 180px;
    height: 180px;
    top: 5%;
  }
  .projects-mosaic {
    grid-template-columns: repeat(2, 1fr);
  }
  .mosaic-large {
    grid-column: span 2;
    grid-row: span 1;
  }
  section { padding: 3rem 0; }
  .partners-grid { 
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .partners-grid img { height: 35px; }
}

@media (max-width: 480px) {
  .wrapper, .wrapper-narrow { padding: 0 16px; }
  section { padding: 2.5rem 0; }
  .nav-actions .btn {
    padding: 0.4rem 0.6rem;
    font-size: 0.8rem;
    white-space: nowrap;
  }
  .cta-box {
    padding: 0.6rem 1rem;
  }
  .cta-box strong {
    font-size: 0.75rem;
  }
  .cta-box small {
    font-size: 0.6rem;
  }
  .card-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
  .contact-split {
    grid-template-columns: 1fr;
  }
  .hand-left, .hand-right {
    width: 120px;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-form button {
    width: 100%;
  }
  .projects-mosaic {
    grid-template-columns: 1fr;
  }
  .mosaic-large {
    grid-column: span 1;
    grid-row: span 1;
  }
}
