/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Stardom&family=Inter:opsz,wght@14..32,400;14..32,500;14..32,600;14..32,700&display=swap');

/* ===== VARIABLES & RESET – VINTAGE FARVER ===== */
:root {
  --cream-light: #FFF8D7;
  --cream-mid: #F5DEC1;
  --cream-dark: #DAD5B7;
  --brown-dark: #565239;
  --brown-mid: #7a6b4f;
  --brown-light: #a69473;
  --shadow-heavy: 0 8px 20px rgba(86, 82, 57, 0.25);
  --retro-green: #7a8c5e;
  --text-dark: #3d3524;
  --text-light: #f5f0e6;
  --bg-offwhite: #FFF8D7;
  --border-color: #DAD5B7;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #f7f2e4;
  color: var(--text-dark);
  line-height: 1.7;
  border-radius: 0 !important;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== TYPOGRAPHY – VINTAGE GOTISK ===== */
h1, h2, h3, h4, .logo, .hero-title {
  font-family: 'Stardom', 'Times New Roman', serif;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--brown-dark);
  text-transform: uppercase;
}

h1 {
  font-size: 3.8rem;
  line-height: 1.1;
}

h2 {
  font-size: 2.8rem;
  border-bottom: 3px solid var(--brown-dark);
  display: inline-block;
  padding-bottom: 0.3rem;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}

h3 {
  font-size: 1.8rem;
}

a {
  color: var(--brown-dark);
  text-decoration: none;
  transition: all 0.2s ease;
  border-bottom: 1px solid transparent;
}
a:hover {
  color: var(--brown-mid);
  border-bottom-color: var(--brown-dark);
}

/* ===== HEADER / NAVIGATION – VINTAGE ===== */
header {
  background: var(--brown-dark);
  padding: 1rem 2rem;
  margin-bottom: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  border-bottom: 4px solid var(--cream-dark);
  box-shadow: var(--shadow-heavy);
  position: relative;
}

header::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--cream-mid) 0px,
    var(--cream-mid) 20px,
    transparent 20px,
    transparent 40px
  );
  animation: loading-scroll 4s linear infinite;
  opacity: 0.6;
}

@keyframes loading-scroll {
  0% { background-position: 0 0; }
  100% { background-position: 100% 0; }
}

.logo {
  font-size: 2rem;
  color: var(--cream-light);
  letter-spacing: 0.1em;
  border: none;
  font-family: 'Courier New', monospace;
}
.logo:hover {
  color: var(--cream-mid);
  border-bottom: none;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

nav a {
  font-family: 'Courier New', monospace;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cream-light);
  border-bottom: 2px solid transparent;
  padding: 0.25rem 0;
  transition: all 0.3s ease;
}
nav a:hover {
  color: var(--cream-mid);
  border-bottom-color: var(--cream-mid);
  text-decoration: none;
}

/* ===== HERO – VINTAGE ===== */
.hero {
  background: linear-gradient(145deg, var(--brown-dark) 0%, var(--brown-mid) 100%);
  padding: 4rem 3rem 5rem 3rem;
  margin-bottom: 3rem;
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-heavy);
  color: var(--cream-light);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(0,0,0,0) 0px,
    rgba(0,0,0,0) 2px,
    rgba(0,0,0,0.05) 2px,
    rgba(0,0,0,0.05) 4px
  );
  pointer-events: none;
  z-index: 1;
}

.hero-title::after {
  content: '█';
  animation: blink 1s step-end infinite;
  color: var(--cream-mid);
  margin-left: 4px;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero-title {
  color: var(--cream-light);
  font-size: 4.5rem;
  margin-bottom: 0.5rem;
  line-height: 1;
  position: relative;
  z-index: 2;
}

.hero-sub {
  font-family: 'Courier New', monospace;
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--cream-mid);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  z-index: 2;
  position: relative;
}

.hero-text {
  font-size: 1.1rem;
  max-width: 600px;
  color: var(--cream-light);
  border-left: 4px solid var(--cream-mid);
  padding-left: 1.5rem;
  margin-bottom: 2.5rem;
  z-index: 2;
  position: relative;
  font-family: 'Inter', sans-serif;
}

.hero .btn {
  margin-top: 0;
  background: transparent;
  color: var(--cream-light);
  border: 2px solid var(--cream-light);
  align-self: flex-start;
  z-index: 2;
  position: relative;
  font-family: 'Courier New', monospace;
  transition: all 0.3s ease;
}
.hero .btn:hover {
  background: var(--cream-light);
  color: var(--brown-dark);
  border-bottom: 2px solid var(--cream-light);
}

/* ===== MAIN CONTENT ===== */
main {
  background: var(--cream-light);
  padding: 2.5rem 3rem;
  border: 1px solid var(--cream-dark);
  box-shadow: 0 4px 12px rgba(86, 82, 57, 0.08);
  min-height: 55vh;
  position: relative;
}

main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(0,0,0,0) 0px,
    rgba(0,0,0,0) 2px,
    rgba(0,0,0,0.015) 2px,
    rgba(0,0,0,0.015) 4px
  );
  pointer-events: none;
  z-index: 1;
}

section {
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 2;
}

/* ===== PROJECT GRID – 3 PÅ RÆKKE ===== */
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1.5rem;
}

/* ===== PROJECT CARD – VINTAGE ===== */
.project-card {
  background: var(--cream-light);
  border: 2px solid var(--brown-dark);
  border-radius: 0 !important;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-heavy), 0 0 30px rgba(218, 213, 183, 0.3);
  border-color: var(--brown-mid);
}

.project-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  width: 20px;
  height: 20px;
  border-top: 2px solid var(--brown-mid);
  border-left: 2px solid var(--brown-mid);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}
.project-card:hover::before {
  opacity: 1;
}

.project-card::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 20px;
  height: 20px;
  border-bottom: 2px solid var(--brown-mid);
  border-right: 2px solid var(--brown-mid);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}
.project-card:hover::after {
  opacity: 1;
}

.project-image-wrapper {
  position: relative;
  overflow: hidden;
  background: var(--brown-dark);
  border-bottom: 3px solid var(--brown-dark);
}

.project-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, opacity 0.3s ease;
}
.project-card:hover .project-image {
  transform: scale(1.05);
  opacity: 0.9;
}

.project-content {
  padding: 1.5rem 1.5rem 1.8rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: var(--cream-light);
}

.project-title {
  font-family: 'Stardom', serif;
  font-weight: 400;
  font-size: 1.6rem;
  text-transform: uppercase;
  color: var(--brown-dark);
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
  line-height: 1.2;
}

.project-description {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}

.project-tag {
  background: var(--cream-mid);
  border: 1px solid var(--cream-dark);
  padding: 0.2rem 0.7rem;
  font-family: 'Courier New', monospace;
  font-weight: 600;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brown-dark);
  border-radius: 0 !important;
  transition: all 0.3s ease;
}
.project-tag:hover {
  background: var(--brown-dark);
  color: var(--cream-light);
  border-color: var(--brown-dark);
}

.project-btn {
  align-self: flex-start;
  background: transparent;
  color: var(--brown-dark);
  border: 2px solid var(--brown-dark);
  padding: 0.4rem 1.5rem;
  font-family: 'Courier New', monospace;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  border-radius: 0 !important;
  text-decoration: none;
  display: inline-block;
}
.project-btn:hover {
  background: var(--brown-dark);
  color: var(--cream-light);
  border-color: var(--brown-dark);
  text-decoration: none;
  transform: translateX(4px);
}

/* ===== FOOTER – VINTAGE ===== */
footer {
  margin-top: 3rem;
  padding: 1.5rem 2rem;
  background: var(--brown-dark);
  border: 1px solid var(--cream-dark);
  border-radius: 0 !important;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  color: var(--cream-dark);
  font-size: 0.85rem;
  font-family: 'Courier New', monospace;
  position: relative;
}

footer::before {
  content: '>_';
  color: var(--cream-mid);
  margin-right: 0.5rem;
}

footer a {
  color: var(--cream-mid);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
footer a:hover {
  color: var(--cream-light);
  border-bottom-color: var(--cream-light);
}

.footer-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-dot {
  width: 8px;
  height: 8px;
  background: var(--cream-mid);
  border-radius: 50% !important;
  animation: pulse-dot 2s ease-in-out infinite;
}

/* ============================================================
   ===== ABOUT PAGE – VINTAGE =====
   ============================================================ */
.about-image-wrapper {
  margin-bottom: 2rem;
  border: 2px solid var(--brown-dark);
  overflow: hidden;
  position: relative;
}

.about-image-wrapper::after {
  content: '';
  position: absolute;
  inset: -2px;
  border: 2px solid var(--brown-mid);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.about-image-wrapper:hover::after {
  opacity: 1;
}

.about-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.about-image-wrapper:hover .about-image {
  transform: scale(1.02);
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-content h2 {
  font-family: 'Stardom', serif;
  font-size: 2.2rem;
  text-transform: uppercase;
  color: var(--brown-dark);
  border-bottom: 3px solid var(--brown-dark);
  padding-bottom: 0.3rem;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.about-content p {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 1.2rem;
}

.about-content strong {
  color: var(--brown-dark);
  font-weight: 600;
  font-family: 'Courier New', monospace;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

/* ============================================================
   ===== CONTACT PAGE – VINTAGE =====
   ============================================================ */

/* ---- Contact Wrapper (if you ever use the form) ---- */
.contact-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin: 2rem 0;
}

.contact-form-wrapper {
  padding: 2rem;
  background: var(--cream-light);
  border: 2px solid var(--brown-dark);
  position: relative;
  transition: box-shadow 0.3s ease;
}
.contact-form-wrapper:hover {
  box-shadow: var(--shadow-heavy);
}
.contact-form-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(0,0,0,0) 0px,
    rgba(0,0,0,0) 2px,
    rgba(0,0,0,0.015) 2px,
    rgba(0,0,0,0.015) 4px
  );
  pointer-events: none;
  z-index: 1;
}

.form-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.5rem;
}
.form-header .form-icon {
  font-size: 1.8rem;
  animation: float 3s ease-in-out infinite;
}

.contact-form-wrapper h2 {
  font-family: 'Stardom', serif;
  font-size: 1.8rem;
  text-transform: uppercase;
  color: var(--brown-dark);
  border-bottom: 3px solid var(--brown-dark);
  padding-bottom: 0.3rem;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.contact-form-intro {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.contact-form .form-group {
  margin-bottom: 1.2rem;
  position: relative;
}
.contact-form label {
  display: block;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--brown-dark);
  margin-bottom: 0.3rem;
  font-family: 'Courier New', monospace;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid var(--cream-dark);
  border-radius: 0 !important;
  font-family: 'Courier New', monospace;
  font-size: 0.95rem;
  background: #ffffff;
  transition: all 0.3s ease;
  color: var(--text-dark);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--brown-dark);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(86, 82, 57, 0.1);
  transform: scale(1.01);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #a69473;
  font-style: italic;
}

.retro-btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--brown-dark);
  color: var(--cream-light);
  padding: 0.8rem 2rem;
  border: 2px solid var(--brown-dark);
  border-radius: 0 !important;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
  width: fit-content;
  font-family: 'Courier New', monospace;
  position: relative;
  overflow: hidden;
}
.retro-btn:hover {
  background: transparent;
  color: var(--brown-dark);
  transform: translateX(6px);
  border-bottom: 2px solid var(--brown-dark);
}
.retro-btn .btn-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}
.retro-btn:hover .btn-arrow {
  transform: translateX(6px);
}

/* ---- CONTACT INFO BOX (FIXED & CLEANED) ---- */
.contact-info {
  max-width: 600px;            /* reasonable size, leaves space on the right */
  margin: 0 auto 0 0;          /* left-aligned */
  padding: 2rem 2.5rem;
  background: var(--cream-light);
  border: 2px solid var(--brown-dark);
  box-shadow: var(--shadow-heavy);
  transition: all 0.3s ease;
}

/* Consistent typography inside the box (all body text = Inter) */
.contact-info,
.contact-info p,
.contact-info strong,
.contact-info a,
.contact-info .social-btn {
  font-family: 'Inter', sans-serif;
}

/* Keep the heading in the vintage serif style */
.contact-info h2 {
  font-family: 'Stardom', serif;
  font-size: 2rem;
  border-bottom: 3px solid var(--brown-dark);
  padding-bottom: 0.3rem;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.contact-info-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.5rem 0;
  margin-bottom: 1.2rem;
  border-bottom: 1px dashed var(--cream-dark);
  transition: all 0.3s ease;
}
.contact-item:hover {
  background: rgba(245, 222, 193, 0.3);
  padding-left: 0.8rem;
}

.contact-icon {
  font-size: 1.3rem;
  line-height: 1.2;
  min-width: 2rem;
  transition: transform 0.3s ease;
}
.contact-item:hover .contact-icon {
  transform: scale(1.15) rotate(-5deg);
}

.contact-item strong {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brown-dark);
}

.contact-item p {
  margin: 0.2rem 0 0 0;
  font-size: 1rem;
}

.contact-item a {
  color: var(--brown-dark);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.contact-item a:hover {
  border-bottom-color: var(--brown-dark);
}

/* Social buttons – clean & consistent */
.social-links {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.3rem;
  flex-wrap: wrap;
}

.social-btn {
  background: transparent;
  color: var(--brown-dark);
  border: 2px solid var(--brown-dark);
  padding: 0.3rem 1.2rem;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  text-decoration: none;
  border-radius: 0 !important;
}
.social-btn:hover {
  background: var(--brown-dark);
  color: var(--cream-light);
  border-color: var(--brown-dark);
  transform: translateY(-2px);
}

/* ---- Retro status (for future use) ---- */
.retro-status {
  margin-top: 2rem;
  padding: 0.8rem 1rem;
  background: var(--brown-dark);
  border: 2px solid var(--cream-dark);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  color: var(--cream-dark);
}

.status-dot {
  width: 10px;
  height: 10px;
  background: var(--cream-mid);
  border-radius: 50% !important;
  animation: pulse-dot 2s ease-in-out infinite;
}

.status-text {
  color: var(--cream-dark);
  letter-spacing: 0.05em;
}

.form-note {
  font-size: 0.8rem;
  color: var(--brown-mid);
  margin-top: 1.5rem;
  font-style: italic;
  font-family: 'Courier New', monospace;
  border-top: 1px dashed var(--cream-dark);
  padding-top: 1rem;
}

/* ============================================================
   ===== ANIMATIONER =====
   ============================================================ */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* ============================================================
   ===== RESPONSIV =====
   ============================================================ */

@media (max-width: 1024px) {
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .contact-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  body {
    padding: 1rem 0.5rem;
  }

  header {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
  }
  .logo {
    text-align: center;
    font-size: 1.8rem;
  }
  nav ul {
    justify-content: center;
    gap: 1.25rem;
  }
  nav a {
    font-size: 0.75rem;
  }

  .hero {
    padding: 2.5rem 1.5rem;
    text-align: center;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-title::after {
    content: ''; /* fjern cursor på mobil */
  }
  .hero-sub {
    font-size: 0.75rem;
  }
  .hero-text {
    border-left: none;
    padding-left: 0;
    border-top: 3px solid var(--cream-mid);
    padding-top: 1rem;
    max-width: 100%;
    text-align: left;
  }
  .hero .btn {
    width: 100%;
    text-align: center;
  }

  main {
    padding: 1.5rem 1rem;
  }
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }

  .project-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .project-image {
    height: 180px;
  }
  .project-content {
    padding: 1.2rem 1.2rem 1.5rem;
  }
  .project-title {
    font-size: 1.4rem;
  }
  .project-btn {
    width: 100%;
    text-align: center;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-info {
    order: 2;
    max-width: 100%;           /* full width on tablets */
    margin: 0;                 /* remove left alignment */
    padding: 1.5rem;
  }
  .contact-form-wrapper {
    order: 1;
  }
  .contact-form-wrapper h2,
  .contact-info h2 {
    font-size: 1.4rem;
  }
  .contact-item {
    gap: 0.8rem;
  }
  .retro-btn {
    width: 100%;
    justify-content: center;
  }
  .social-links {
    gap: 0.5rem;
  }
  .social-btn {
    font-size: 0.65rem;
    padding: 0.2rem 0.8rem;
    flex: 1;
    text-align: center;
  }
  .retro-status {
    font-size: 0.65rem;
    padding: 0.6rem 0.8rem;
  }

  footer {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
    padding: 1.25rem;
  }
  footer::before {
    content: '';
  }

  button, .btn {
    width: 100%;
    text-align: center;
  }
  form {
    max-width: 100%;
  }

  .about-image {
    max-height: 250px;
  }
  .about-content h2 {
    font-size: 1.8rem;
  }
  .about-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .project-image {
    height: 150px;
  }
  .contact-wrapper {
    gap: 1.5rem;
  }
  .contact-form-wrapper,
  .contact-info {
    padding: 1.2rem;
  }
  .contact-form-wrapper h2,
  .contact-info h2 {
    font-size: 1.2rem;
  }
  .form-header .form-icon,
  .contact-info-header .info-icon {
    font-size: 1.4rem;
  }
  .contact-item {
    flex-direction: column;
    gap: 0.3rem;
  }
  .contact-icon {
    font-size: 1.1rem;
  }
  .retro-btn {
    font-size: 0.8rem;
    padding: 0.6rem 1.2rem;
  }
}