/* ============================================
   INK-AND-ETHER DESIGN SYSTEM
   Bespoke Stationery & Calligraphy
   ============================================ */

:root {
  /* Color Palette */
  --color-paper-white: #FCFBF7;
  --color-inkwell-black: #121212;
  --color-electric-cobalt: #0047AB;
  --color-vellum-gray: #E2E2E2;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-script: 'Dancing Script', cursive;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 4rem;
  --space-xxl: 8rem;
  
  /* Layout */
  --max-width: 1400px;
  --content-padding: 5vw;
  --section-gap: 6rem;
  
  /* Borders & Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(18, 18, 18, 0.08);
  --shadow-md: 0 4px 16px rgba(18, 18, 18, 0.12);
  --shadow-lg: 0 8px 32px rgba(18, 18, 18, 0.16);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.6s ease;
  
  /* Z-index layers */
  --z-base: 1;
  --z-header: 100;
  --z-menu: 200;
  --z-popup: 300;
  --z-cursor: 9999;
}

/* ============================================
   RESET & BASE
   ============================================ */

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

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

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-inkwell-black);
  background-color: var(--color-paper-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   LIQUID CURSOR EFFECT
   ============================================ */

.cursor-trail {
  position: fixed;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 71, 171, 0.3) 0%, transparent 70%);
  pointer-events: none;
  z-index: var(--z-cursor);
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease, transform 0.1s ease;
  opacity: 0;
}

.cursor-trail.active {
  opacity: 1;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--color-inkwell-black);
}

h1 {
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.3rem, 3vw, 2rem);
  margin-bottom: var(--space-lg);
}

h3 {
  font-size: clamp(1rem, 2vw, 1.3rem);
}

p {
  margin-bottom: var(--space-md);
  max-width: 65ch;
}

a {
  color: var(--color-electric-cobalt);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-inkwell-black);
}

.script-font {
  font-family: var(--font-script);
  font-weight: 400;
  font-style: normal;
}

/* ============================================
   HEADER
   ============================================ */

.site-header {
  position: relative;
  width: 100%;
  padding: var(--space-lg) var(--content-padding);
  background: transparent;
  z-index: var(--z-header);
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 80px;
}

.site-header nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.brand-name {
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 600;
  color: var(--color-inkwell-black);
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  gap: 15px;
  list-style: none;
  align-items: center;
}

.nav-menu a {
  color: var(--color-inkwell-black);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  padding: var(--space-xs) 0;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-electric-cobalt);
  transition: width var(--transition-base);
}

.nav-menu a:hover::after {
  width: 100%;
}

/* Burger Menu */
.burger-toggle {
  display: flex;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  z-index: calc(var(--z-menu) + 1);
  position: relative;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: space-around;
  margin-left: var(--space-md);
}

.burger-line {
  width: 100%;
  height: 2px;
  background: var(--color-inkwell-black);
  transition: all var(--transition-base);
  transform-origin: center;
}

.burger-toggle.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.burger-toggle.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-toggle.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(252, 251, 247, 0.98);
  backdrop-filter: blur(10px);
  padding: var(--space-xxl) var(--space-xl);
  z-index: var(--z-menu);
  transform: translateX(-100%);
  transition: transform var(--transition-base);
  box-shadow: 4px 0 32px rgba(18, 18, 18, 0.1);
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-top: var(--space-xxl);
}

.mobile-menu-list a {
  font-size: 1.25rem;
  color: var(--color-inkwell-black);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-vellum-gray);
}

/* ============================================
   HERO BANNERS
   ============================================ */

.hero-banner {
  width: 100vw;
  position: relative;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-paper-white) 0%, var(--color-vellum-gray) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-xxl) var(--content-padding);
  max-width: var(--max-width);
  width: 100%;
}

.hero-title {
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: var(--color-inkwell-black);
  line-height: 1.1;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: var(--color-inkwell-black);
  opacity: 0.8;
  max-width: 60ch;
  margin: 0 auto var(--space-xl);
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  z-index: 1;
}

.hero-text-overlay {
  position: relative;
  z-index: 3;
  background: rgba(252, 251, 247, 0.85);
  padding: var(--space-xl);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  margin-top: var(--space-xl);
}

/* ============================================
   MAIN CONTENT
   ============================================ */

main {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-xxl) var(--content-padding);
}

.content-section {
  margin-bottom: var(--section-gap);
  padding: var(--space-lg) 0;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.contact-page .content-section {
  margin-bottom: var(--space-xl);
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: var(--space-xl);
  text-align: center;
  position: relative;
  padding-bottom: var(--space-md);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: var(--color-electric-cobalt);
}

/* ============================================
   GRID LAYOUTS
   ============================================ */

.grid-two {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xl);
  max-width: 100%;
}

.grid-three {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  max-width: 100%;
}

.grid-four {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  max-width: 100%;
}

.content-card {
  background: var(--color-paper-white);
  padding: var(--space-lg);
  border: 1px solid var(--color-vellum-gray);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.content-card.card-hover {
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.content-card.card-hover:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.image-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 60%;
  overflow: hidden;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  background: var(--color-vellum-gray);
}

.image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.image-wrapper:hover img {
  transform: scale(1.03);
}

/* ============================================
   INK DISPERSION BACKGROUND
   ============================================ */

.ink-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  opacity: 0.1;
}

.ink-blob {
  position: absolute;
  border-radius: 50%;
  background: var(--color-electric-cobalt);
  animation: disperse 20s infinite ease-in-out;
}

.ink-blob:nth-child(1) {
  width: 300px;
  height: 300px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.ink-blob:nth-child(2) {
  width: 200px;
  height: 200px;
  top: 60%;
  right: 15%;
  animation-delay: 5s;
}

.ink-blob:nth-child(3) {
  width: 250px;
  height: 250px;
  bottom: 20%;
  left: 30%;
  animation-delay: 10s;
}

@keyframes disperse {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
  25% {
    transform: translate(30px, -40px) scale(1.2);
    opacity: 0.5;
  }
  50% {
    transform: translate(-20px, 30px) scale(0.9);
    opacity: 0.4;
  }
  75% {
    transform: translate(40px, 20px) scale(1.1);
    opacity: 0.35;
  }
}

/* ============================================
   SVG LINE DRAWING
   ============================================ */

.svg-container {
  width: 100%;
  height: 400px;
  margin: var(--space-xl) 0;
  position: relative;
}

.svg-line {
  stroke: var(--color-electric-cobalt);
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawLine 3s ease-in-out forwards;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

/* ============================================
   FORMS
   ============================================ */

.form-container {
  max-width: 600px;
  margin: var(--space-xl) auto;
  padding: var(--space-xl);
  background: var(--color-paper-white);
  border: 1px solid var(--color-vellum-gray);
  border-radius: var(--radius-lg);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: 500;
  color: var(--color-inkwell-black);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-md);
  border: 1px solid var(--color-vellum-gray);
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-size: 1rem;
  background: var(--color-paper-white);
  color: var(--color-inkwell-black);
  transition: border-color var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-electric-cobalt);
}

.form-textarea {
  min-height: 120px;
  max-height: 200px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.checkbox-input {
  margin-top: 4px;
  cursor: pointer;
}

.checkbox-label {
  font-size: 0.9rem;
  line-height: 1.5;
  cursor: pointer;
}

.btn {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  background: var(--color-inkwell-black);
  color: var(--color-paper-white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  margin-top: 10px;
  transition: all var(--transition-base);
}
.footer-section a {
  color: white;
}

/* Contact page specific layouts */
.contact-layout {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  align-items: flex-start;
}

.contact-form-section,
.contact-info-section {
  width: 100%;
}

.contact-form-section h2,
.contact-info-section h2 {
  margin-bottom: var(--space-lg);
  font-size: clamp(1.3rem, 3vw, 2rem);
}

.faq-layout {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .contact-layout {
    flex-direction: row;
    gap: var(--space-xl);
    align-items: flex-start;
  }
  
  .contact-form-section,
  .contact-info-section {
    flex: 1;
    min-width: 0;
  }
  
  .faq-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
  }
}

.btn:hover {
  background: var(--color-electric-cobalt);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--color-inkwell-black);
  border: 1px solid var(--color-inkwell-black);
}

.btn-secondary:hover {
  background: var(--color-inkwell-black);
  color: var(--color-paper-white);
}

/* ============================================
   PRODUCTS
   ============================================ */

.product-card {
  background: var(--color-paper-white);
  border: 1px solid var(--color-vellum-gray);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  background: var(--color-vellum-gray);
}

.product-info {
  padding: var(--space-lg);
}

.product-title {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
  color: var(--color-inkwell-black);
}

.product-description {
  color: var(--color-inkwell-black);
  opacity: 0.7;
  margin-bottom: var(--space-md);
  font-size: 0.95rem;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-electric-cobalt);
}

/* ============================================
   MAP
   ============================================ */

.map-container {
  width: 100%;
  height: 300px;
  margin: var(--space-lg) 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-vellum-gray);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================
   PRIVACY POPUP
   ============================================ */

.privacy-popup {
  display: none;
  position: fixed;
  bottom: var(--space-lg);
  left: var(--space-lg);
  right: var(--space-lg);
  max-width: 500px;
  background: var(--color-paper-white);
  border: 1px solid var(--color-vellum-gray);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
  z-index: var(--z-popup);
  animation: slideUp 0.4s ease;
}

.privacy-popup.active {
  display: block;
}

@keyframes slideUp {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.privacy-popup-content {
  margin-bottom: var(--space-md);
  font-size: 0.9rem;
  line-height: 1.6;
}

.privacy-popup-buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.privacy-popup-btn {
  flex: 1;
  min-width: 120px;
  padding: var(--space-sm) var(--space-md);
  font-size: 0.9rem;
}

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

.site-footer {
  background: var(--color-inkwell-black);
  color: var(--color-paper-white);
  padding: var(--space-xl) var(--content-padding);
  margin-top: var(--space-xxl);
}

.footer-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-xl);
}

.footer-section h3 {
  color: var(--color-paper-white);
  margin-bottom: var(--space-md);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-menu {
  list-style: none;
}

.footer-menu li {
  margin-bottom: var(--space-sm);
}

.footer-menu a {
  color: var(--color-paper-white);
  opacity: 0.8;
  font-size: 0.9rem;
  transition: opacity var(--transition-fast);
}

.footer-menu a:hover {
  opacity: 1;
}

.footer-info {
  font-size: 0.9rem;
  opacity: 0.7;
  line-height: 1.8;
}

.footer-bottom {
  margin-top: var(--space-xl);
  display: flex;
  justify-content: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(252, 251, 247, 0.1);
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.6;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

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

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

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.hidden {
  display: none;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1023px) {
  .nav-menu {
    display: none;
  }
  
  .burger-toggle {
    display: flex;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .site-header {
    justify-content: space-between;
  }
}

@media (max-width: 1023px) {
  .nav-menu {
    display: none;
  }
  
  .burger-toggle {
    display: flex;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .site-header {
    justify-content: space-between;
  }
  
  .grid-two,
  .grid-three,
  .grid-four {
    grid-template-columns: 1fr;
  }
  
  .paper-specimen {
    grid-template-columns: 1fr;
  }
  
  .contact-layout {
    flex-direction: column;
  }
  
  .faq-layout {
    grid-template-columns: 1fr;
  }
  
  .hero-banner {
    min-height: 60vh;
  }
}

@media (min-width: 1024px) {
  .burger-toggle {
    display: none;
  }
  
  .mobile-menu {
    display: none !important;
  }
}

@media (max-width: 768px) {
  :root {
    --content-padding: 3vw;
    --section-gap: 4rem;
  }
  
  .site-header {
    padding: var(--space-md) var(--content-padding);
    min-height: 60px;
  }
  
  .hero-content {
    padding: var(--space-xl) var(--content-padding);
  }
  
  main {
    padding: var(--space-xl) var(--content-padding);
  }
  
  .content-section {
    padding: var(--space-lg) 0;
  }
  
  .form-container {
    padding: var(--space-lg);
  }
  
  .privacy-popup {
    left: var(--space-md);
    right: var(--space-md);
    bottom: var(--space-md);
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

@media (max-width: 480px) {
  :root {
    --content-padding: 4vw;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  .privacy-popup-buttons {
    flex-direction: column;
  }
  
  .privacy-popup-btn {
    width: 100%;
  }
}

@media (max-width: 320px) {
  :root {
    --content-padding: 5vw;
    font-size: 14px;
  }
  
  .hero-banner {
    min-height: 50vh;
  }
}

/* ============================================
   SPECIAL PAGES STYLES
   ============================================ */

.monogram-preview {
  width: 100%;
  max-width: 500px;
  height: 500px;
  margin: var(--space-xl) auto;
  border: 2px solid var(--color-vellum-gray);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-paper-white);
  position: relative;
  overflow: hidden;
}

.monogram-display {
  font-family: var(--font-script);
  font-size: 12rem;
  color: var(--color-inkwell-black);
  opacity: 0.9;
}

.paper-specimen {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  margin: var(--space-xl) 0;
  align-items: start;
}

.paper-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 300px;
  max-height: 500px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-vellum-gray);
}

.paper-details {
  padding: var(--space-lg);
}

.paper-spec {
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-vellum-gray);
}

.paper-spec-label {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--color-electric-cobalt);
  margin-bottom: var(--space-xs);
}

.paper-spec-value {
  font-size: 1.1rem;
  color: var(--color-inkwell-black);
}

.etiquette-card {
  background: var(--color-paper-white);
  border-left: 4px solid var(--color-electric-cobalt);
  padding: var(--space-xl);
  margin-bottom: var(--space-lg);
  border-radius: var(--radius-sm);
}

.etiquette-title {
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
  color: var(--color-inkwell-black);
}

.etiquette-content {
  color: var(--color-inkwell-black);
  opacity: 0.8;
  line-height: 1.8;
}

/* 404 Page */
.error-container {
  text-align: center;
  padding: var(--space-xxl) var(--content-padding);
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.error-code {
  font-size: clamp(4rem, 15vw, 10rem);
  font-weight: 700;
  color: var(--color-electric-cobalt);
  margin-bottom: var(--space-md);
}

.error-message {
  font-size: clamp(1.25rem, 3vw, 2rem);
  margin-bottom: var(--space-lg);
  color: var(--color-inkwell-black);
}

