    /* Work Sans variable font (wght 100-900), self-hosted */
    @font-face {
      font-family: 'Work Sans';
      font-style: normal;
      font-weight: 100 900;
      font-display: swap;
      src: url('fonts/work-sans-latin.woff2') format('woff2');
      unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
    }

    @font-face {
      font-family: 'Work Sans';
      font-style: normal;
      font-weight: 100 900;
      font-display: swap;
      src: url('fonts/work-sans-latin-ext.woff2') format('woff2');
      unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
    }

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

    :root {
      --ceramic: #fefff8;
      --log-cabin: #252422;
      --periwinkle-gray: #cdcde6;
      --prelude: #d4cbe5;
      --tusk: #eaf8bf;
      --orange: #ff7c33;
    }

	body {
	  font-family: 'Work Sans', sans-serif;
	  background: var(--ceramic);
	  color: var(--log-cabin);
	  line-height: 1.6;
	}

	html {
	  scroll-behavior: smooth;
	}

    /* Header */
    header {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 24px;
      padding: 14px 24px;
      background: #fff;
      border-bottom: 1px solid var(--log-cabin);
      position: sticky;
      top: 0;
      z-index: 100;
    }

	.site-logo {
	  grid-column: 1;
	  justify-self: start;
	  margin-left: clamp(24px, 6vw, 120px);
	  display: flex;
	  align-items: center;
	}

	.site-logo svg,
	.site-logo img {
	  height: clamp(50px, 4.5vw, 75px);
	  width: auto;
	  display: block;
	}
	
    nav {
      grid-column: 2;
      justify-self: center;
    }

    nav ul {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      column-gap: 80px;
      row-gap: 10px;
      list-style: none;
    }

    nav a {
      font-family: 'Work Sans', sans-serif;
      font-weight: 300;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      font-size: clamp(18px, 1.25vw, 22px);
      color: #252422;
      text-decoration: none;
      white-space: nowrap;
      transition: color 0.2s ease, transform 0.2s ease;
    }

    nav a:hover,
    nav a:focus {
      color: #FF7C33;
      transform: translateY(-1px);
    }

    /* Hero Section */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px 80px; 
      background: var(--ceramic);
      position: relative;
      overflow: hidden;
    }

.hero-logo {
  width: 90vw;
  max-width: 1200px;
}

.hero-logo svg {
  width: 100%;
  height: auto;
  display: block;
}


.hero-content {
  text-align: center;
  width: 90%;
  max-width: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(48px, 8vw, 180px);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 40px;
}

.hero-content p {
  font-size: 42px;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 30px;
}

	.cta-button {
	  display: inline-block;
	  padding: 0;
	  border: none;
	  background: transparent;
	  text-transform: uppercase;
	  font-size: clamp(18px, 1.25vw, 22px);
	  font-family: 'Work Sans', sans-serif;
	  font-weight: 300;
	  letter-spacing: 0.08em;
	  text-decoration: none;
	  color: var(--log-cabin);
	  white-space: nowrap;
	  transition: color 0.2s ease, transform 0.2s ease;
	}

	.cta-button:hover,
	.cta-button:focus {
	  color: #FF7C33;
	  transform: translateY(-1px);
	}

.cta-link-wrapper {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.cta-link-wrapper:hover {
  transform: translateY(-1px);
}

.cta-link-wrapper .cta-button {
  display: inline-block;
  padding: 0;
  transition: color 0.2s ease;
}

.cta-link-wrapper:hover .cta-button {
  color: #FF7C33;
}

.cta-link-wrapper svg {
  display: block;
  transition: transform 0.2s ease;
}

.cta-link-wrapper:hover svg {
  transform: translateY(3px);
}

#vision,
#about {
  background: var(--ceramic);
  position: relative;
  padding: 120px 10vw;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.vision-header,
.about-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
  margin-bottom: 0;
  position: relative;
  width: 100%;
  max-width: 1400px;
  flex-shrink: 0;
}

	section {
	  min-height: 100vh;
	}
	
    .section-title {
      font-size: clamp(60px, 12vw, 230px);
      font-weight: 500;
      line-height: 1.1;
      margin-bottom: 40px;
    }

    .section-intro {
      font-size: clamp(14px, 1.2vw, 16px);
      line-height: 1.8;
      max-width: 800px;
    }

	#services {
	  background: var(--orange);
	  color: var(--log-cabin);
	  padding: 90px 10vw;
	}

	.services-header .section-title,
	.vision-header .section-title,
	.about-header .section-title {
	  margin-bottom: 0;
	}

.services-header,
.vision-header,
.about-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
  margin-bottom: 60px;
  position: relative;
}

.services-header .section-title,
.vision-header .section-title,
.about-header .section-title {
  margin-bottom: 0;
  flex: 0 0 auto;
  line-height: 0.85;
  display: flex;
  align-items: flex-end;
}

.services-header .section-intro,
.vision-header .section-intro,
.about-header .section-intro {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  padding-bottom: 0;
  margin-bottom: 0;
  flex: 0 1 45%;
  max-width: 800px;
}	
.vision-header,
.about-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  position: relative;
  width: 100%;
  max-width: 1400px;
}

.header-content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
  width: 100%;
}
    .services-container {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 40px;
      margin-top: 60px;
    }

    .services-nav {
      display: flex;
      flex-direction: column;
      gap: 0;
      align-items: flex-start;
    }

.service-button {
  padding: 12px 16px;
  border: 1px solid var(--tusk);
  background: transparent;
  text-align: left;
  font-family: inherit;
  font-size: 18px;
  color: var(--log-cabin);
  cursor: pointer;
  transition: background 0.3s;
  width: auto;
  display: inline-block;
  white-space: nowrap;
  margin-top: -1px;
  position: relative;
}

.service-button:first-child {
  margin-top: 0;
}

.service-button br {
  display: inline;
}

.service-button br::after {
  content: " ";
}

.service-button.active {
  background: #e3f8c1;
}

.service-button:hover {
  background: rgba(227, 248, 193, 0.5);
}

	.services-content {
	  background: var(--tusk);
	  padding: 40px;
	  min-height: 300px;
	  position: relative;
	  overflow: hidden;
	}

	.service-panel {
	  display: none;
	  animation: slideInFromRight 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	}

	.service-panel.active {
	  display: block;
	}

	@keyframes slideInFromRight {
	  from {
		opacity: 0;
		transform: translateX(100%);
	  }
	  to {
		opacity: 1;
		transform: translateX(0);
	  }
	}

    .service-panel h3 {
      font-size: clamp(24px, 3vw, 42px);
      font-weight: 500;
      margin-bottom: 20px;
    }

    .service-panel p {
      font-size: clamp(14px, 1.2vw, 16px);
      line-height: 1.8;
    }

/* How We Work Section */
#how-we-work {
  background: linear-gradient(to right, var(--prelude) 0%, var(--prelude) 30%, var(--tusk) 30%, var(--tusk) 100%);
  padding: 0;
  min-height: 100vh;
  display: block;
}

.how-wrap {
  display: grid;
  grid-template-columns: 38% 62%;
  min-height: 100vh;
  padding: clamp(40px, 5vw, 80px) clamp(30px, 4vw, 60px);
  gap: 0;
}

.how-left {
  background: transparent;
  padding: 0 clamp(20px, 3vw, 60px) 0 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
}



.how-left .section-title {
  font-size: clamp(70px, 16vw, 230px);
  line-height: 0.85;
  margin-bottom: 0;
}

.how-left p {
  font-size: 16px;
  font-weight: 500;
  color: var(--log-cabin);
  max-width: 38ch;
  margin: 0;
}

.how-right {
  background: transparent;
  padding: 0 0 0 clamp(10px, 2vw, 30px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.how-panel {
  width: 100%;
  max-width: none;
  padding: 0 40px 0 40px;
}

.how-item {
  padding: 28px 40px 28px 108px;
  border: 3px solid var(--periwinkle-gray);
  border-top: none;
  position: relative;
}

.how-item:first-child {
  border-top: 3px solid var(--periwinkle-gray);
}

.how-item h3 {
  font-size: clamp(22px, 2.4vw, 42px);
  font-weight: 500;
  margin: 0 0 12px 0;
  color: var(--log-cabin);
}

.how-item p {
  font-size: 16px;
  font-weight: 400;
  color: var(--log-cabin);
  margin: 0;
  max-width: 72ch;
}

.how-icon {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 43px;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.how-icon svg {
  width: 100%;
  height: 100%;
}

    .work-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      margin-top: 60px;
    }

    .work-item {
      background: var(--tusk);
      padding: 40px;
      border: 1px solid var(--periwinkle-gray);
    }

    .work-item h3 {
      font-size: clamp(20px, 2.5vw, 42px);
      font-weight: 500;
      margin-bottom: 20px;
    }

    .work-item p {
      font-size: clamp(14px, 1.2vw, 16px);
      line-height: 1.8;
    }

    /* Vision Section */
    #vision {
      background: var(--ceramic);
      position: relative;
    }

    /* About Section */
    #about {
      background: var(--ceramic);
      position: relative;
    }

    /* Corner decorations */
    .corner-decoration {
      position: absolute;
      width: clamp(80px, 7.6vw, 147px);
      height: clamp(80px, 7.6vw, 147px);
      pointer-events: none;
    }

    .corner-decoration.top-left {
      top: 0;
      left: 0;
    }

    .corner-decoration.top-right {
      top: 0;
      right: 0;
    }

    .corner-decoration.bottom-left {
      bottom: 0;
      left: 0;
    }

    .corner-decoration.bottom-right {
      bottom: 0;
      right: 0;
    }

/* Contact Section */
#contact {
  background: var(--log-cabin);
  color: var(--tusk);
  padding: clamp(60px, 8vw, 120px) clamp(30px, 6vw, 80px) 0;
}

.contact-title-block {
  width: 100%;
  margin-bottom: clamp(20px, 3vh, 40px);
  line-height: 1;
}

.contact-full-title {
  font-size: clamp(80px, 15vw, 230px);
  font-weight: 500;
  line-height: 0.75;
  margin: 0;
}

.contact-header {
  display: flex;
  gap: 20px;
  align-items: flex-end;
  margin-bottom: 60px;
}

.contact-us-title {
  flex: 0 0 auto;
}

.contact-us-title .section-title {
  font-size: clamp(80px, 15vw, 230px);
  font-weight: 500;
  line-height: 0.75;
  margin: 0;
}

.contact-intro-text {
  flex: 1;
  max-width: none;
}

.contact-intro-text .section-intro {
  font-size: clamp(20px, 2.5vw, 42px);
  font-weight: 500;
  line-height: 1.3;
  margin: 0;
  max-width: none;
}

.contact-content {
  position: relative;
  margin-bottom: 0;
  overflow: hidden;
}

.contact-form {
  display: grid;
  grid-template-columns: 30% 70%;
  grid-template-rows: auto auto auto auto;
  gap: 0;
  position: relative;
  border: 1px solid var(--tusk);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 20px 30px;
  border-bottom: 1px solid var(--tusk);
  border-right: 1px solid var(--tusk);
}

.form-group:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.form-group:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
}

.form-group:nth-child(3) {
  grid-column: 1;
  grid-row: 3;
  border-bottom: none;
}

.form-group:last-of-type {
  border-bottom: none;
  border-right: none;
  grid-row: 1 / 5;
  grid-column: 2;
  position: relative; 
}

.form-group label {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  opacity: 0.9;
}

.form-group input,
.form-group textarea {
  padding: 0;
  border: none;
  background: transparent;
  color: var(--tusk);
  font-family: inherit;
  font-size: 16px;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(234, 248, 191, 0.3);
}

.form-group textarea {
  min-height: 100%;
  resize: none;
}

.submit-button {
  position: absolute;
  bottom: 20px;
  right: 20px;
  padding: 12px 30px;
  border: 1px solid var(--tusk);
  background: transparent;
  color: var(--tusk);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  letter-spacing: 0.05em;
}

.submit-button:hover {
  background: var(--tusk);
  color: var(--log-cabin);
}

/* Footer */
footer {
  background: var(--log-cabin);
  color: var(--tusk);
  padding: clamp(40px, 5vw, 60px) clamp(30px, 6vw, 80px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 30px;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo svg,
.footer-logo img {
  height: 55px;
  width: auto;
  display: block;
}

.footer-address {
  font-size: 14px;
  line-height: 1.8;
}

.footer-address p {
  margin: 0;
}

.footer-right {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-social-link {
  display: block;
  transition: opacity 0.3s ease;
}

.footer-social-link:hover {
  opacity: 0.7;
}

.footer-social-link svg {
  display: block;
  width: 35px;
  height: 35px;
}

	.arrow-link {
	  display: inline-block;
	  margin-top: 20px;
	  transition: transform 0.2s ease;
	}

	.arrow-link:hover {
	  transform: translateY(3px);
	}

	.arrow-link svg {
	  display: block;
	}
#vision .corner-decoration,
#about .corner-decoration {
  position: absolute;
  width: clamp(80px, 7.6vw, 147px);
  height: clamp(80px, 7.6vw, 147px);
  pointer-events: none;
}

#vision .corner-decoration.top-left,
#about .corner-decoration.top-left {
  top: clamp(60px, 8vh, 120px);
  left: calc(10vw - 0.5vw);
}

#vision .corner-decoration.top-right,
#about .corner-decoration.top-right {
  top: clamp(60px, 8vh, 120px);
  right: calc(10vw - 0.5vw);
}

#vision .corner-decoration.bottom-left,
#about .corner-decoration.bottom-left {
  bottom: clamp(60px, 8vh, 120px);
  left: calc(10vw - 0.5vw);
}

#vision .corner-decoration.bottom-right,
#about .corner-decoration.bottom-right {
  bottom: clamp(60px, 8vh, 120px);
  right: calc(10vw - 0.5vw);
}

/* Logo animations */
.logo-background,
.logo-grid,
.logo-image,
.logo-eries {
  animation-duration: 1.5s;
  animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
  animation-fill-mode: both;
  opacity: 0;
}

/* 1st - Purple background slides from right with overshoot */
.logo-background {
  animation-name: slideFromRightOvershoot;
  animation-delay: 0s;
}

@keyframes slideFromRightOvershoot {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  70% {
    transform: translateX(-20px);
    opacity: 1;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* 2nd - IMAGE text slides from top with overshoot */
.logo-image {
  animation-name: slideFromTopOvershoot;
  animation-delay: 0.3s;
}

@keyframes slideFromTopOvershoot {
  0% {
    transform: translate(452.526px, -100%);
    opacity: 0;
  }
  70% {
    transform: translate(452.526px, 190.558px);
    opacity: 1;
  }
  100% {
    transform: translate(452.526px, 170.558px);
    opacity: 1;
  }
}

/* 3rd - Orange grid slides from left with minimal overshoot and slower */
.logo-grid {
  animation-name: slideFromLeftOvershoot;
  animation-delay: 0.35s;
  animation-duration: 1.8s;
}

@keyframes slideFromLeftOvershoot {
  0% {
    transform: translate(-100%, 287.346px);
    opacity: 0;
  }
  80% {
    transform: translate(662.259px, 287.346px);
    opacity: 1;
  }
  100% {
    transform: translate(657.259px, 287.346px);
    opacity: 1;
  }
}

/* 4th - ERIES text slides from bottom with overshoot */
.logo-eries {
  animation-name: slideFromBottomOvershoot;
  animation-delay: 0.8s;
}

@keyframes slideFromBottomOvershoot {
  0% {
    transform: translate(452.526px, 100%);
    opacity: 0;
  }
  70% {
    transform: translate(452.526px, 515.913px);
    opacity: 1;
  }
  100% {
    transform: translate(452.526px, 535.913px);
    opacity: 1;
  }
}

/* Hide default scrollbar */
.scroll-container {
  height: 100vh;
  overflow-y: scroll;
  overflow-x: hidden;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

.scroll-container::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

/* Custom scrollbar container */
.custom-scrollbar {
  position: fixed;
  right: 0;
  top: 0;
  width: 48px;  /* Changed from 32px */
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
}

.custom-scrollbar-track {
  width: 100%;
  height: 100%;
  background: 
    repeating-conic-gradient(
      rgba(254, 255, 248, 0.1) 0deg 90deg,
      rgba(37, 36, 34, 0.7) 90deg 180deg
    ) 0 0 / 12px 12px;  /* Changed from 24px to 12px */
}

.custom-scrollbar-thumb {
  position: absolute;
  width: 100%;
  background: 
    repeating-conic-gradient(
      rgba(37, 36, 34, 0.9) 0deg 90deg,
      rgba(254, 255, 248, 0.05) 90deg 180deg
    ) 0 0 / 12px 12px;  /* Changed from 24px to 12px */
  border: 1px solid rgba(37, 36, 34, 0.3);
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  background-clip: padding-box;
  pointer-events: auto;
  cursor: pointer;
  transition: opacity 0.2s;
}

.custom-scrollbar-thumb:hover {
  opacity: 0.8;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-family: 'Work Sans', sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(18px, 1.25vw, 22px);
  color: #252422;
  cursor: pointer;
  padding: 8px 0;
}

.menu-close {
  display: none;
  position: fixed;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.menu-close svg {
  width: 24px;
  height: 24px;
  stroke: #252422;
  stroke-width: 2;
}

.menu-close.active {
  display: block;
}

@media (max-width: 1024px) {
  #how-we-work {
    background: var(--prelude);
    overflow: hidden;
    width: 100%;
  }
  
  .how-wrap {
    grid-template-columns: 1fr;
    padding: clamp(40px, 5vw, 80px) 5vw;
    overflow: hidden;
    max-width: 100%;
    width: 100%;
  }
  
  .how-left {
    padding: 0;
    max-width: 100%;
  }

  .how-left p {
    font-size: 14px;
    line-height: 1.5;
    max-width: 100%;
  }
  
  .how-right {
    background: var(--tusk) !important;
    padding: 20px !important;
    margin-top: 40px;
    max-width: 100%;
    width: 100%;
  }
  
  .how-panel {
    padding: 0 10px;
    max-width: 100%;
    width: 100%;
  }
  
  .how-item {
    padding: 20px 10px 20px 50px;
    max-width: 100%;
    word-break: break-word;
  }
  
  .how-item h3 {
    font-size: clamp(18px, 4.5vw, 28px);
    word-break: break-word;
  }
  
  .how-item p {
    font-size: 14px;
    line-height: 1.5;
    word-break: break-word;
  }
  
  .how-icon {
    left: 5px;
    transform: translate(0, -50%);
    width: 32px;
    height: 32px;
  }
  .custom-scrollbar {
    display: none !important;
  }
  
  .scroll-container {
    scrollbar-width: auto;
    -ms-overflow-style: auto;
    scroll-behavior: smooth;
  }
  
  .scroll-container::-webkit-scrollbar {
    display: block;
  }
}

@media (max-width: 860px) {
  * {
    box-sizing: border-box;
  }
  
  body,
  .scroll-container {
    overflow-x: hidden;
    max-width: 100vw;
  }
  
  /* Services section - ALL rules in one place */
  #services {
    padding: 60px 5vw;
    overflow: hidden;
  }
  
  .services-header {
    padding: 0;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }
  
  .services-container {
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
  }
  
  .services-nav {
    width: 100%;
  }
  
.service-button {
  width: auto;
  white-space: normal;
  display: inline-block;
}
  
  .services-content {
    padding: 20px;
    width: 100%;
  }
  
  .service-panel h3 {
    font-size: clamp(22px, 5vw, 32px);
  }
  
  .service-panel p {
    font-size: 15px;
    line-height: 1.6;
  }
  
  /* Vision and About sections */
  #vision,
  #about {
    padding: 80px 5vw;
  }
  
  .header-content-wrapper {
    padding: 0;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }
  
  .vision-header,
  .about-header {
    align-items: flex-start;
  }
  
  /* Header */
  header {
    grid-template-columns: 1fr;
    row-gap: 10px;
    padding: 12px 16px;
  }

  .site-logo {
    margin-left: 0;
    justify-self: center;
  }

  /* Hero */
  .hero-content p {
    font-size: 28px;
    line-height: 1.3;
    padding-top: clamp(20px, 3vh, 40px);
  }
  
  /* Contact */
  .work-grid,
  .contact-content {
    grid-template-columns: 1fr;
  }
  
  .contact-header {
    gap: 30px;
    align-items: flex-start;
  }
  
  .contact-content {
    overflow: hidden;
  }
  
  .contact-form {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
	border: 1px solid var(--tusk);
  }
  
  .contact-full-title {
    font-size: clamp(60px, 12vw, 120px);
    line-height: 0.75;
    margin: 0;
  }
  
  .contact-us-title .section-title {
    font-size: clamp(60px, 12vw, 120px);
    line-height: 0.75;
  }

  .form-group:nth-child(3) {
    grid-column: 1;
    border-right: none;
    border-bottom: 1px solid var(--tusk);
  }

  .form-group:last-of-type {
    grid-row: auto;
    grid-column: 1;
    min-height: 200px;
  }
  
  .form-group:last-of-type textarea {
    min-height: 150px;
  }

  /* Footer */
  footer {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
  }

  .footer-left {
    flex-direction: column;
    justify-content: center;
  }

  .footer-right {
    justify-content: center;
  }
  
  /* Corner decorations */
  #vision .corner-decoration.top-left,
  #about .corner-decoration.top-left {
    top: clamp(20px, 5vh, 60px);
    left: 0;
  }

  #vision .corner-decoration.top-right,
  #about .corner-decoration.top-right {
    top: clamp(20px, 5vh, 60px);
    right: 0;
  }

  #vision .corner-decoration.bottom-left,
  #about .corner-decoration.bottom-left {
    bottom: clamp(20px, 5vh, 60px);
    left: 0;
  }

  #vision .corner-decoration.bottom-right,
  #about .corner-decoration.bottom-right {
    bottom: clamp(20px, 5vh, 60px);
    right: 0;
  }
  
  /* Mobile menu */
  .menu-toggle {
    display: block;
  }
  
  nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
  }
  
  nav.active {
    display: flex;
  }
  
  nav ul {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  
  nav a {
    text-align: center;
  }
}
@media (max-width: 460px) {
  #vision .corner-decoration.top-left,
  #about .corner-decoration.top-left {
    top: 0;
    left: 0;
  }

  #vision .corner-decoration.top-right,
  #about .corner-decoration.top-right {
    top: 0;
    right: 0;
  }

  #vision .corner-decoration.bottom-left,
  #about .corner-decoration.bottom-left {
    bottom: 0;
    left: 0;
  }

  #vision .corner-decoration.bottom-right,
  #about .corner-decoration.bottom-right {
    bottom: 0;
    right: 0;
  }
}
.form-status {
  position: absolute;
  bottom: 20px;
  left: 30px;
  margin: 0;
  color: var(--tusk);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  animation: fadeIn 0.3s ease;
}

.form-status:empty {
  display: none;
}

.form-status.error {
  color: #ff6b6b;
}

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

.submit-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Screen-reader-only content */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* Spam trap: hidden from humans, left visible to naive bots */
.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  html,
  .scroll-container {
    scroll-behavior: auto;
  }

  .logo-background,
  .logo-image,
  .logo-grid,
  .logo-eries {
    animation: none;
    opacity: 1;
  }

  .service-panel {
    animation: none;
  }

  nav a,
  .cta-button,
  .cta-link-wrapper,
  .cta-link-wrapper svg,
  .arrow-link {
    transition: none;
  }
}
